/* common.css */
body {
    background-color: #f8f9fa;
}

.container {
    margin-top: 20px;
    width: 100%; /* Full width */
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.btn-custom {
    margin-top: 26px; /* Adjust if needed */
}

h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.form-row label {
    font-weight: bold;
}

.table {
    margin-top: 30px;
    width: 100%; /* Full width */
}

    .table thead th {
        background-color: #b44593;
        color: #fff;
        font-weight: bold;
        border-bottom: 2px solid #b44593;
    }

    .table tbody tr:nth-child(odd) {
        background-color: #f2f2f2;
    }

    .table tbody tr:hover {
        background-color: #e9ecef;
    }

    .table td, .table th {
        vertical-align: middle;
        border: none !important; /* Remove all borders */
    }

    .table tbody td {
        border-bottom: 1px solid #dee2e6; /* Optional: Add bottom borders to separate rows */
    }

.fa-check-square {
    color: green;
}

.fa-square {
    color: red;
}

.fa-eye {
    color: #007bff;
    cursor: pointer;
}

    .fa-eye:hover {
        color: #0056b3;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin: 0 0.1rem;
    color: #007bff;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background-color: #e9ecef;
        color: #0056b3;
    }

.dataTables_wrapper .dataTables_info {
    padding: 0.5rem 1rem;
}

.dataTables_wrapper .dataTables_length {
    float: left;
}

.dataTables_wrapper .dataTables_filter {
    display: none; /* Hide the search box */
}

.icon-white {
    color: white !important; /* Ensure the icon color is white */
}

/* Ensure the container takes full width and aligns items to the end */
.container {
    width: 100%;
    padding: 0;
}

/* Flexbox container for buttons alignment */
.btn-group {
    display: flex;
    gap: 5px; /* Adjust gap to control space between buttons */
}

/* Custom button styling */
.btn-custom {
    background-color: #b44593;
    font-weight: bold;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-top: 12px;
    margin-bottom: 20px;
}

    .btn-custom:hover {
        background-color: #8e2c6b;
        color: white;
    }

.row.align-items-start {
    align-items: flex-start;
}

.form-group {
   margin-right:10px;
}

/* Flatpickr calender CSS */
/* Custom styles for the Flatpickr calendar */
.flatpickr-calendar {
    background-color: white !important; /* Change to your desired color */
    border: 1px solid black; /* Adjust border color */
}

.flatpickr-day.selected {
    background-color: green !important; /* Change to your desired color */
    color: white; /* Adjust text color */
}

.flatpickr-day.today {
    background-color: skyblue; /* Change to your desired color */
}

/* Custom styles for the Flatpickr input field */
input.flatpickr-input {
    background-color: white !important; /* Change to your desired color */
    color: black; /* Adjust text color */
    cursor: not-allowed; /* Indicate non-editable state */
}

    input.flatpickr-input:disabled {
        background-color: white !important; /* Ensure background color */
        color: black; /* Ensure text color */
        border: 1px solid black; /* Ensure border color */
    }
/* Flatpickr calender CSS */