@charset "utf-8";
/* CSS Document */

.bck {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 6px 18px #adb5bd;
    border: 1px solid #d8d8d8;
}

    .bck input, .bck textarea, .bck select {
        margin-bottom: 15px;
    }

    .bck h2 {
        text-align: center;
        margin-bottom: 30px;
        font-weight: 600;
        color: #212529;
        font-size: 28px;
        font-family: math;
    }

    .bck button {
        padding: 6px 20px;
        border-radius: 3px;
        width: 100%;
        font-weight: 600;
    }

/*.header.border-bottom {
    background: #0d6ea8;
    box-shadow: 0px 3px 4px #e1e1e1;
}*/

.header.border-bottom {
    background: #0d6ea8;
    box-shadow: 0px 3px 4px #e1e1e1;
    background: linear-gradient(to right, rgba(0,198,255,1), rgba(0,114,255,1));
}


.site-footer {
    /* background: #0d6ea8;
    color: #fff;*/
    background: #0d6ea8;
    box-shadow: 0px 3px 4px #e1e1e1;
    background: linear-gradient(to right, rgba(0,198,255,1), rgba(0,114,255,1));
}

.header .nav-link {
    color: #444;
    font-weight: 600;
}


    .header .nav-link.active {
        background: #7683d9 !important;
    }


.with-title {
    position: relative;
    background-color: #fafafa;
    padding: 30px;
    margin: 0 0 30px;
    border-bottom: 2px solid;
    border-radius: 5px;
    border-bottom-color: #555;
    font-size: 20px;
}


.widget-nav-menu ul li {
    padding: 8px 0 0;
    padding-top: 8px;
    border: 0;
    position: relative;
}

.widget ul > li {
    list-style: none;
    text-decoration: none;
}


.widget ul {
    margin: 0;
    padding: 0;
}

.widget-nav-menu ul li a::after {
    /*  content: "\e855";
  font-family: "fontello";*/
    font-style: normal;
    font-weight: 400;
    position: absolute;
    top: 9px;
    right: 20px;
    color: #bcbec0;
}

.widget-nav-menu ul li a {
    display: block;
    padding: 11px 40px 9px 20px;
    position: relative;
    color: #555;
    z-index: 1;
    font-weight: 600;
    font-size: 15px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    text-decoration: none;
}

.widget-title {
    font-size: 25px;
}



.widget-nav-menu ul li.active a {
    background-color: #7683d9;
    color: #fff;
    border-color: #7683d9;
}

.widget-nav-menu ul li:hover a {
    background-color: #7683d9;
    color: #fff;
    border-color: #7683d9;
}


.assign button {
    background: #7683d9;
    color: #fff;
    border: 0;
    padding: 3px 5px;
    border-radius: 3px;
    width: 100%;
    font-weight: 600;
    font-size: 11px;
}

.txlog button {
    background: #7683d9;
    color: #fff;
    border: 0;
    padding: 6px 15px;
    border-radius: 3px;
    width: 95px;
    font-weight: 600;
}

.txlog {
    text-align: right;
}


.txlog1 button {
    background: #7683d9;
    color: #fff;
    border: 0;
    padding: 6px 15px;
    border-radius: 3px;
    width: 95px;
    font-weight: 600;
}

.txlog1 {
    text-align: left;
}


.navbar-toggler {
    border: 2px solid #fff;
    background: #0d6ea8;
}

.header .nav-link:hover {
    background: #e9e9e9;
}

.header .nav-link {
    color: #fff;
    font-weight: 600;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/*pagination css*/
.pagination .page-item.active .page-link {
    background-color: #00A2FF !important;
    border-color: #0098FF !important;
    color: #fff !important;
    font-weight: bold;
}

.pagination .page-link:hover {
    background-color: #A4D8FF;
    border-color: #00c6ff;
    color: #00c6ff;
}
.pagination .page-link {
    color: #0098FF;
    background-color: #fff;
    border: 1px solid #dee2e6;
}


.bck-src {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 16px #adb5bd;
    border: 1px solid #d8d8d8;
    overflow: auto;
}

    .bck-src h2 {
        text-align: center;
        font-weight: 600;
        color: #212529;
        font-family: math;
    }

/*.search-tab {
    margin-left: 240px;
}*/

#successMessageExtReg {
    font-weight: bold;
}

/* Seating*/

.seat-map {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: auto;
    justify-content: center;
    gap: 8px; 
}


.seat {
    position: relative;
    width: 50px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    font-size: 10px;
    font-weight: 600;
}


.seat input {
    display: none;
}


.seat span {
    pointer-events: none; 
}


    .seat.vacant {
        background-color: #f8f9fa;
        border: 2px solid #1fad3e;
        color: darkslategrey;
    }

 
    .seat.occupied {
        background-color: grey;
        cursor: not-allowed;
        opacity: 0.8;
    }


    .seat input:checked + span,
    .seat.selected {
        background-color: #1fad3e !important;
        color: white;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #1fad3e;
    }



/*#seatMapModalLabel {
    flex: 1;
    text-align: center;
    font-weight: 600;
}
*/

.modal-title-container {
    text-align: center;
}

#seatMapModalLabel {
    font-weight: 600;
    margin-bottom: 4px;
}

#selectedShiftSlotText {
    font-size: 0.875rem;
    color: #6c757d;
}


.btn-outline-custom {
    color: #0D6EA8;
    border-color: #0D6EA8;
}

    .btn-outline-custom:hover {
        background-color: #0D6EA8;
        color: white;
    }

.seat-Allot {
    --bs-modal-width: 90%;
}
/*
.headerLogo {
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}*/

.btn.status-pill {
    border-radius: 9999px !important;
    background-color: #e6f9ee !important;
    color: #136f3c !important;
    border: none !important;
    padding: 6px 14px !important;
    font-weight: 600;
}

    .btn.status-pill:hover {
        background-color: #d3f3df !important;
    }

.btn.status-checkOut {
    border-radius: 9999px !important;
    background-color: #f8d1d1 !important;
    color: #bd0c1d !important;
    border: none !important;
    padding: 6px 14px !important;
    font-weight: 600;
}
.btn.status-checkOut:hover {
    background-color: #efaaaa !important;
}
.listTextShadow {
    text-shadow: 0 0 #000;
    --bs-table-color: #212529;
}

.headerLogo {
    height: 58px;
    cursor: pointer;
}

.cards.colo8 {
    background: linear-gradient(135deg, #6a11cb, #2575fc);  
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cards.colo4 {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cards.colo9 {
    background: linear-gradient(135deg, #f7971e, #ff5858);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cards.colo1 {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cards.colo3 {
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cards.colo2 {
    background: linear-gradient(135deg, #3c3b3f, #605c3c);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cards.colo10 {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.cards.colo5 {
    background: linear-gradient(135deg, var(--bs-gray-700), var(--bs-warning));
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}



.attendance-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.in-box, .out-box {
    position: relative;
    font-weight: bold;
    font-size: 24px;
    padding: 20px 40px;
    border: 4px solid;
    display: inline-block;
    text-align: center;
}

.in-box {
    color: black;
    border-color: #28a745;
}

.in-box::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid black;
}

.qrTitle {
    text-align: center;
    font-weight: 600;
    color: #6c757d;
    font-family: math;
}

.out-box {
    color: black;
    border-color: #dc3545; /* red */
}

    .out-box::after {
        content: "";
        position: absolute;
        left: 50%;
        top: -20px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 20px solid black;
    }

.badge-status {
    display: inline-block;
    min-width: 80px; 
    text-align: center;
    font-weight: 400; 
    border-radius: 0.5rem; 
    font-size: 0.9rem; 
}


.badge-paid {
    background-color: #90dca2; 
    color: #155724;
    border: 1px solid #127529;
}

.badge-pending {
    background-color: #f3d985;
    color: #4a3802;
    border: 1px solid #94834c;
}

.bg-custom-gradient {
    background: linear-gradient(90deg, #eaf4ff 0%, #becada 100%) !important;
    color: #212529 !important;
}

.readonly-strong {
    font-weight: 400; /* Extra bold */
    color: #000; /* Pure black text */
}

.modal-edit {
    text-shadow: 0 0 black;
}


.value-badge {
    background-color: #f7f7f7; 
    color: #333;
    padding: 4px 10px; 
    border-radius: 6px; 
    font-weight: 500;
    margin-left: 5px;
    display: inline-block; 
    width: 255px;
   /* text-align:center;*/
}

.custom-add-icon {
    color: dodgerblue !important; 
}


a.disabled {
    pointer-events: none !important;
    touch-action: none !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: none;
    color: gray !important;
}

.model_hight{
    top: 100px !important;
}

.tag_input {
    background-color: transparent;
    border-color: #ccc;
    height: 53px;
    padding-left: 20px;
}

.tag_label {
    color: #111;
}

.badge-paymentstatus {
    display: inline-block;
    min-width: 100px;
    padding: 0.25rem 0.5rem;
    text-align: center;
    font-weight: 500;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: nowrap;
} 
/* Overdue badge */
.badge-overdue {
    background-color: #ef606d;
    color: #4c080e;
    border: 1px solid #5a040d;
}

/* Due today badge */
.badge-due-today {
    background-color: #ef9446;
    color: #7e3e05;
    border: 1px solid #974810;
}

/* 1-3 Days - CRITICAL - ORANGE */
.badge-critical {
    background-color: #ebc171;
    color: #8a4600;
    border: 1px solid #995c07;
}

/* 4-7 Days - WARNING - YELLOW */
.badge-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #765e12;
}

/* Future due (4+ days) badge */
.badge-future {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #144e21;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.3s ease-in-out;
}

.dropdown-toggle::after {
    display: none !important;
}

@media handheld, only screen and (min-width: 320px) and (max-width: 620px) {
    img .img-fluid.mx-auto.d-block {
         width: 100% !important;
         max-width: 100% !important;
     }
 }







