
@import url(./loader.css);
@import url(./preloader.css);
@import url(./dataloader.css);


/* variables start */
:root {
    --primary-color: #023047;
    --secondary-color: #457b9d;
    --tertiary-color: #a8dadc;
    --text-color: #202020;
    --light-color: #ffffff;
    --danger-color: #e63946;
    --shadow-one: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --success-color: #38b000;
    --pending-color: #ffea00;
    --bg-yellow: #ffd60a;
}

input[type="checkbox"] {
    accent-color: var(--primary-color);
}

/* variables end */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    overflow-y: hidden;
}

form {
    user-select: none;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

h4 {
    margin: 0;
}

/* Remove spin buttons in WebKit browsers (Chrome, Safari, etc.) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove spin buttons in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* For other browsers, such as Edge */
input[type="number"] {
    appearance: textfield;
}


/* login css card */
.login_page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login_card {
    width: 350px;
    background-color: var(--light-color);
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.25);
}

.login_card .login_card_header {
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
}

.login_card button {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 20px;
}

.login_card button:hover {
    background-color: var(--secondary-color);
}

.login_card button[type="submit"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}

/* sidebar start  */
.sidebar {
    height: 100vh;
    width: 250px;
    background-color: var(--primary-color);
    color: var(--light-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    transition: all 0.45s;
}

.sidebar.toggle {
    position: fixed;
    top: 0;
    left: -250px;
}

.sidebar .toggle_btn {
    position: absolute;
    top: 10px;
    right: -40px;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.45s;
    -webkit-transition: all 0.45s;
    -moz-transition: all 0.45s;
    -ms-transition: all 0.45s;
    -o-transition: all 0.45s;
}

.sidebar .toggle_btn::after {
    content: "";
    width: 100px;
    height: 45px;
    /*background-color: var(--primary-color);
    */
    position: absolute;
    top: -2px;
    left: -59px;
    z-index: -1;
    border-radius: 0 30px 30px 0;
    -webkit-border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -ms-border-radius: 0 30px 30px 0;
    -o-border-radius: 0 30px 30px 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}





.sidebar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    height: 60px;
}

.sidebar .menus {
    width: 100%;
    min-height: 200px;
    margin-top: 20px;
}

.sidebar .menus ul {
    margin: 0;
    padding: 0;
}

.sidebar .menus ul li {
    list-style: none;
    display: flex;
    padding: 0 10px;
    margin: 10px 0;
    box-shadow: var(--shadow-one);
}

.sidebar .menus ul li a {
    width: 100%;
    background-color: var(--light-color);
    padding: 7px 10px;
    text-decoration: none;
    font-size: 20px;
    color: var(--text-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.sidebar .menus ul li a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.sidebar .menus ul li a i,
.sidebar .menus ul li a span {
    transition: all 0.3s;
}

.sidebar .menus ul li a:hover i,
.sidebar .menus ul li a:hover span {
    transform: translateX(10px);

}

.sidebar .menus ul li a.active {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.sidebar .menus ul li a.logout:hover {
    background-color: var(--danger-color);
    color: var(--light-color);
}

@media(max-width: 1000px) {
    .sidebar {
        left: -250px;
    }

    .sidebar.toggle {
        left: 0;
    }

    .sidebar .toggle_btn.active {
        right: -27px;
    }

    .sidebar .toggle_btn.active::after {
        background-color: var(--primary-color);
    }
}


.sidebar .profile_data {
    background-color: var(--light-color);
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.sidebar .profile_data h6 {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.3rem;
    margin: 0;
}

.sidebar .profile_data p {
    color: #202020;
    text-align: center;
    margin: 0;
}

/* sidebar end */

/* topbar start */
.topbar {
    width: calc(100% - 250px);
    position: fixed;
    right: 0;
    top: 0;
    background-color: var(--secondary-color);
    height: 60px;
    transition: all 0.45s;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 30px;
    z-index: 99;
}

.topbar.toggle {
    width: 100%;
}

.topbar .left {
    display: flex;
    gap: 20px;
}

.topbar .left .avtar {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
}

.topbar .left .notification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.topbar .left .user_deatils {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.topbar .left .user_deatils h6 {
    margin: 0;
    color: var(--tertiary-color);
}

.topbar .left .user_deatils span {
    color: var(--primary-color);
}

.topbar .left .notification a {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.topbar .left .notification a:hover {
    background-color: var(--tertiary-color);
    color: var(--text-color);
}

.topbar .left .notification a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width: 1000px) {
    .topbar {
        width: 100%;
    }

    .topbar.toggle {
        width: calc(100% - 250px);
    }
}

@media(max-width: 768px) {
    .topbar {
        width: 100%;
    }

    .topbar.toggle {
        width: 100%;
    }
}

/* topbar end */

/* main start */
main.main {
    position: relative;
    left: 250px;
    top: 60px;
    width: calc(100% - 250px);
    min-height: 100%;
    transition: all 0.45s;
    padding: 10px;
}

main.main.toggle {
    width: 100%;
    left: 0;
}

@media(max-width: 1000px) {
    main.main {
        width: 100%;
        left: 0;
    }

    main.main.toggle {
        width: calc(100% - 250px);
        left: 250px;
    }
}

@media(max-width: 768px) {
    main.main {
        width: 100%;
        height: 100vh;
        left: 0;
    }

    main.main.toggle {
        width: 100%;
        left: 0;
    }
}

/* main end */

/* dashboard start */
.dash_card {
    border: 1px solid rgba(128, 128, 128, 0.491);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--success-color);
}

.dash_card .card_title span {
    color: var(--success-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.8rem;
}

.dash_card .card_title .card_count {
    color: #454545;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2rem;
}

.dash_card .icon {
    color: #959495;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2rem;
}

/* dashboard end */
/* table css start */
.sk_table {
    width: 100%;
}

.sk_table thead th {
    text-align: start;
    background-color: var(--secondary-color);
    padding: 10px;
    color: var(--light-color);
    white-space: nowrap;
}

.sk_table tbody tr {
    border-bottom: 1px solid var(--tertiary-color);
    transition: all 0.3s;
}

.sk_table tbody tr:hover {
    background: var(--tertiary-color);
}

.sk_table tbody tr td {
    text-align: start;
    padding: 10px;
    color: var(--text-color);
}

.sk_table tbody tr td span {
    white-space: nowrap;
}

.sk_table .action_btn {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
}

.sk_table .action_btn a {
    background: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.sk_table .action_btn a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.sk_table .action_btn a.delete {
    background: var(--danger-color);
}

.sk_table .action_btn a:hover.delete {
    background: red;
}

.sk_card_footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sk_card_footer a {
    background-color: var(--secondary-color);
    padding: 7px 30px;
    color: var(--light-color);
    border-radius: 10px;
}

/* table css end */
/* form control css */
.form_control {
    width: 100%;
    border: none;
    outline: 2px solid var(--tertiary-color);
    padding: 7px 10px;
    caret-color: var(--tertiary-color);
    border-radius: 5px;
    margin: 5px 0;
}

.input_group {
    display: flex;
}

.input_group label.form_check {
    flex: 1 1 10%;
    outline: 2px solid var(--tertiary-color);
    padding: 7px 10px;
    margin: 5px 0;
    border-radius: 5px 0 0 5px;
    /*background-color: #457b9d;
    */
    display: flex;
    gap: 20px;
    cursor: pointer;
    color: var(--light-color);
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}

.input_group .form_control {
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
}

.form_control:focus {
    outline: 2px solid var(--secondary-color);
}

.form_control.invalid_form {
    outline: 2px solid var(--danger-color);
}

.form_label {
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: capitalize;
}

.custom_select_drop {
    width: 100%;
    min-height: 20px;
    max-height: 400px;
    background-color: var(--light-color);
    outline: 1px solid var(--secondary-color);
    overflow-y: auto;
    transition: all 0.3s;
    display: none;
    position: absolute;
    z-index: 1;
}

.custom_select_drop ul {
    padding: 0;
}

.custom_select_drop ul li {
    list-style: none;
    padding: 7px 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.custom_select_drop ul li:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn_container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn_container button[type="submit"] {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

@media screen and (max-width: 480px) {
    .btn_container button[type="submit"] {
        width: 100%;
        margin-top: 10px;
    }
}

.btn_container button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

.btn_container button[type="submit"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}

button[type="button"] {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

button[type="button"]:hover {
    background-color: var(--secondary-color);
}

button[type="button"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}



label.form_check.pending {
    background-color: var(--pending-color);
}

label.form_check.pending span {
    color: var(--text-color);
}

label.form_check.pending span.complete {
    color: var(--light-color);
}

label.form_check.complete {
    background-color: var(--success-color);
}

label.form_check span {
    font-weight: 500;
    user-select: none;
}

label.form_check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.indoor.photo_shoot_div {
    display: none;
}

.paymenttype.cash {
    display: none;
}

.paymenttype.online {
    display: none;
}

.delivery.delivery_status {
    display: none;
}

.press.press_status {
    display: none;
}

/* form control css */

/* view card start */
.view_card {
    width: 100%;
    height: calc(100dvh - 60px);
    border: 1px solid var(--text-color);
    background-color: #eeeeee;
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    inset: 0;
    z-index: 50;
    transform: translateY(-100%);
    transition: all 0.45s ease;
}

.view_card.open {
    transform: translateY(0%);
}

.view_card .card_header {
    background-color: var(--tertiary-color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view_card .card_header .date {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.view_card .card_header span {
    font-size: 1.2rem;
    font-weight: 500;
}

.view_card .card_header .close_btn {
    font-size: 1.3rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.view_card .card_header .close_btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.view_card .card_body {
    padding: 15px 15px 40px 15px;
}

.view_card .card_body .inner_card {
    background-color: var(--light-color);
    padding: 10px;
    border-radius: 8px;
    border-top: 5px solid var(--primary-color);
    width: 100%;
    height: 100%;
}

.view_card .card_body .inner_card h4 {
    text-transform: capitalize;
    color: #959595;
}

.view_card .card_body .inner_card strong {
    text-transform: capitalize;
    color: #454545;
}

@media (max-width: 1000px) {
    /* .view_card {
        width: 95%;
        min-height: 90%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0%);
    } */
}

/* view card end */



/* custom table css */
.table_card {
    width: 100%;
    min-height: 100px;
    border: 1px solid var(--secondary-color);
    padding: 15px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin: 20px 0;
    position: relative;
}

.table_card .card_header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 10px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}


/* .table_card .custom_table {
    border: 1px solid black;
} */

.table_card .custom_table {
    width: 100%;
}

.table_card .custom_table thead tr th {
    padding: 10px;
    font-weight: 600;
    background-color: #eeeeee;
}

.table_card .custom_table thead tr th:first-child {
    border-radius: 10px 0 0 10px;
    -webkit-border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    -ms-border-radius: 10px 0 0 10px;
    -o-border-radius: 10px 0 0 10px;
}

.table_card .custom_table thead tr th:last-child {
    border-radius: 0 10px 10px 0;
    -webkit-border-radius: 0 10px 10px 0;
    -moz-border-radius: 0 10px 10px 0;
    -ms-border-radius: 0 10px 10px 0;
    -o-border-radius: 0 10px 10px 0;
}

.table_card tbody tr {
    transition: all 0.3s;
    border-bottom: 1px solid var(--tertiary-color);
}

.table_card tbody tr:nth-child(even) {
    background-color: #a8dadc38;
}



.table_card tbody tr td {
    text-align: start;
    padding: 10px;
    color: var(--text-color);
}

.table_card tbody tr td strong {
    color: #454545;
}

.badge.complete {
    color: var(--light-color);
    background: var(--success-color);
}

.badge.canceled {
    color: var(--light-color);
    background: var(--danger-color);
}

.badge.postponed,
.badge.pending {
    color: var(--light-color);
    background: #ff9d00;
}

.badge.out-for-delivery {
    color: #fff;
    background: #0033ff;
}




.table_card tbody tr td span {
    white-space: nowrap;
    margin: 4px 0;
}

.table_card .action_btn {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
}

.table_card .action_btn a {
    background: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.table_card .action_btn a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.table_card .mobile_view_data {
    width: 100%;
    height: 100%;
    border: 1px solid #eeeeee;
    padding: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    display: none;
}

.table_card .mobile_view_data .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #eeeeee;
    border-radius: 10px;
    margin-bottom: 10px;
}

.table_card .mobile_view_data .header .customer_name {
    color: var(--text-color);
    font-weight: 600;
}

.table_card .mobile_view_data .header .action_btn {
    padding: 0;
}

.table_card .mobile_view_data .body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table_card .mobile_view_data .body .table_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #eeeeee;
    color: var(--text-color);
    border-radius: 10px;
}

.table_card .mobile_view_data .body .table_row .key {
    font-weight: 600;
    text-transform: capitalize;
}

.table_card .mobile_view_data .body .table_row .value {
    font-weight: 400;
    color: #202020;
}

.table_card.notfound {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.table_card img {
    width: 450px;
    margin: auto;
}



@media screen and (max-width: 768px) {
    .table_card .table-responsive {
        display: none;
    }

    .table_card .mobile_view_data {
        display: block;
    }

    .table_card {
        padding: 10px;
    }

    .table_card img {
        width: 90%;
        margin: auto;
    }
}


/* bg layout */


@media screen and (max-width: 480px) {
    .bg_layout {
        z-index: 101;
    }

    .bg_layout.mobile_sidebar {
        display: block;
        z-index: 100;
    }
}

.bg_layout.active {
    display: block;
}

.bg_layout {
    position: fixed;
    inset: 0;
    background-color: #2020205a;
    z-index: 100;
    display: none;
    /* backdrop-filter: blur(2px); */
}

/*  lock ui */

.lock_card {
    background-color: var(--light-color);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -300%);
    width: 400px;
    min-height: 300px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    -webkit-transform: translate(-50%, -300%);
    -moz-transform: translate(-50%, -300%);
    -ms-transform: translate(-50%, -300%);
    -o-transform: translate(-50%, -300%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    opacity: 0;
}

.lock_card.active {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 1;
}

.lock_card .lock_header {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.lock_card .lock_body {
    padding: 10px 20px;
}

.lock_card .lock_body h3,
.lock_card .lock_body p {
    text-align: center;
}

.lock_card .lock_body p {
    font-weight: 500;
    color: var(--primary-color);
}

.lock_card button[type="submit"] {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.lock_card button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

.lock_card button[type="submit"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}

@media screen and (max-width: 480px) {
    .lock_card {
        width: 90%;
    }
}

/*  lock ui */
/* staff create and edit card css */
#staff_form button[type="submit"] {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

#staff_form button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

#staff_form button[type="submit"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}

#staff_form button[type="submit"].btn_secondry {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

#staff_form_update button[type="submit"] {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

#staff_form_update button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

#staff_form_update button[type="submit"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}

#staff_form_update button[type="submit"].btn_secondry {
    background-color: var(--secondary-color);
    color: var(--light-color);
}


/* staff create and edit card css */

/* passowrd show hide */
.password_div {
    position: relative;
}

.password_div i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.password_div i.hide {
    display: none;
}

.password_div i.show {
    display: block;
}




.health_card {
    width: 100%;
    border: 1px solid #0230475a;
    padding: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin: 20px 0;
}

.health_card .card_header {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    width: 100%;
    background-color: #38b00033;
    border-left: 5px solid var(--success-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-weight: 600;
    position: relative;
}

.health_card .card_header .total_booking {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.health_card .card_header .user_data {
    display: flex;
    gap: 20px;
}



.health_card .card_header.no_applians {
    background-color: #ffea0033;
    border-left: 5px solid var(--pending-color);
    color: var(--text-color);
}

.health_card .card_header.no_orders {
    background-color: #e9e9e9;
    border-left: 5px solid #454545;
    color: var(--text-color);
}

.health_card .card_header .user_data .ammount {
    display: flex;
    gap: 20px;
}

.health_card .card_header .user_data .ammount .paid_status_paid {
    color: var(--success-color);
}

.health_card .card_header .user_data .ammount .paid_status_unpaid {
    color: var(--danger-color);
}

.health_card .card_header .user_data .name {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--secondary-color);
}

.health_card .card_header .user_data .ammount {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.health_card .card_header .user_data .name .title {
    font-weight: 500;
    color: #454545;
}


.health_card .card_header button {
    background-color: var(--success-color);
    padding: 7px 15px;
    height: fit-content;
}

.health_card .card_header button:focus {
    outline: 2px solid var(--success-color);
}

.health_card .card_header button:disabled {
    outline: 2px solid #454545;
    background-color: #454545
}


.health_card .card_body {
    display: none;
}

.health_card .card_body .applians_data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #005c8033;
    border-left: 5px solid var(--primary-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-weight: 600;
    margin: 10px 0;
}

.health_card .card_body .applians_data.pending {
    background-color: #e639479c;
    border-left: 5px solid var(--danger-color);
    /* color: #fff; */
}

.health_card .card_body .applians_data .user_data .bookings {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.health_card .card_body .applians_data .user_data .bookings .title {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.health_card .card_body .applians_data .user_data .amount {
    color: var(--primary-color);
    font-weight: 600;
}


/* search bar and filter */
.advance_booking_haeder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.advance_booking_haeder .data_filter {
    display: flex;
    gap: 20px;
}

.advance_booking_haeder .data_filter .search_bar {
    width: 450px;
    display: flex;
}

@media (max-width: 1100px) {
    .advance_booking_haeder .data_filter .search_bar {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .advance_booking_haeder .data_filter .search_bar {
        width: 300px;
    }
}

@media (max-width: 600px) {
    .advance_booking_haeder .data_filter #searchdata {
        width: 100%;
    }

    .advance_booking_haeder .data_filter #searchdata .search_bar {
        width: 100%;
    }

    .advance_booking_haeder {
        padding: 5px 0;
        width: 100%;
    }

    .advance_booking_haeder .data_filter {
        width: 100%;
    }

}

.advance_booking_haeder .data_filter .search_bar input {
    width: 100%;
    border-radius: 30px 0 0 30px;
    border: none;
    -webkit-border-radius: 30px 0 0 30px;
    outline: 2px solid var(--secondary-color);
    padding: 7px 15px;
    -moz-border-radius: 30px 0 0 30px;
    -ms-border-radius: 30px 0 0 30px;
    -o-border-radius: 30px 0 0 30px;
}

.advance_booking_haeder .data_filter .search_bar input:focus {
    outline: 2px solid var(--primary-color);
}

.advance_booking_haeder .data_filter .search_bar button {
    border: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 15px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -ms-border-radius: 0 30px 30px 0;
    -o-border-radius: 0 30px 30px 0;
    outline: 2px solid var(--primary-color);
}

.advance_booking_haeder .data_filter .search_bar button:hover {
    background-color: var(--secondary-color);
}

.advance_booking_haeder .data_filter .filetr_btn {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.advance_booking_haeder .data_filter .filetr_btn:hover {
    background-color: var(--secondary-color);
}


@media (max-width: 1100px) {
    .advance_booking_haeder h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .advance_booking_haeder h3 {
        display: none;
    }
}

/* pagination */
.pagination_section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination_section .pages {
    display: flex;
    align-items: center;
}

/* Custom pagination styles for active page */
.page-item.active .page-link {
    background-color: #023047;
    border-color: #023047;
    color: white;
    border-radius: 50%;
}

.page-link {
    width: 35px;
    height: 35px;
    color: #457b9d;
    border: 1px solid #457b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
}

.page-link:hover {
    background-color: #457b9d;
    color: white;
}


.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 50%;
    width: 35px;
    height: 35px;
}



.pagination-info,
.pagination-summary {
    display: none !important;
}

p.pagination-info {
    display: none !important;
}

/* pagination */


/* filter container */
.filter_container {
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #95959570;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 10px;
    display: none;
}

.filter_container button:nth-child(1) {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 7px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.filter_container button:nth-child(1):hover {
    background-color: var(--primary-color);
}

.daterange {
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #95959570;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.daterange .form_control {
    width: 100%;
    border: none;
    outline: none;
    padding: 3px 5px;
}

.filter_check {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter_check input[type="checkbox"] {
    width: 20px;
    height: 20px;
}


/* phone number with country code */
.phone_c {
    display: flex;
}

.phone_c input:nth-child(1) {
    flex: 1;
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}

.phone_c input:nth-child(2) {
    flex: 10;
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
}


#followUp_form button[type="submit"] {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

#followUp_form button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

#followUp_form button[type="submit"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}

#followUp_form_update button[type="submit"] {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 7px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

#followUp_form_update button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

#followUp_form_update button[type="submit"]:focus {
    outline: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
}