@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;
}

/* Container for the entire section */
/*.sec-title {
    margin: 20px auto;
    max-width: 855px;
    text-align: center;
}*/

    /* Fixed title */
    /*.sec-title h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }*/

/* Marquee container */
/*.scroll-container {
    position: relative;
    overflow: hidden;
    height: 34px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 5px 10px;
}*/

/* Text to be scrolled */
/*.scroll-text {
    position: absolute;
    white-space: nowrap;
    transform: translateX(100%);
    will-change: transform;
    animation: scroll-left 12s linear infinite;
    font-size: 16px;
    color: #333;
}*/

/* Keyframes for scrolling effect */
/*@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}*/


.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;
}

/*.index-title {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    align-items: center;
    justify-content: center;
    align-items: center;
    justify-content: center;*/
    /* height: 69px; */
    /*background: linear-gradient(90deg, var(--bs-light-border-subtle) 0%, var(--bs-light-border-subtle) 100%);
    padding: 50px;
    border-radius: 8px;*/
    /* width: 855px; */
    /* margin: 0px; */
    /*margin: 20px auto;
    opacity: 0.5;
}*/

/*.index-title {
    display: flex;
    justify-content: center;*/
   /* align-items: center;*/
     /*font-size: 10px !important; 
    margin: 20px auto;
    padding: 10px;
    padding-bottom: 55px;
    padding-top: 17px;
    background: linear-gradient(var(--bs-white) 0 0) padding-box, background  linear-gradient(270deg, red, orange, yellow, green, cyan, blue, violet) border-box;
    border: 2px solid transparent;
    border-radius: 15px;
    background-size: 400% 400%;
    animation: rainbowBorder 12s linear infinite;
    box-shadow: 0px 6px 18px var(--bs-gray-400);
}

@keyframes rainbowBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.indexheader {
    font-size: var(--h4-font-size);
    font-weight: var(--h4-font-weight);
    line-height: var(--line-height-heading-small);
    padding: 5px;
}*/


.index-title {
    display: flex;
    flex-direction: column;  Stack header-content on top, marquee below 
    align-items: center;  Center everything horizontally 
    justify-content: center;
    text-align: center;
    margin: 20px auto;
    padding: 17px 10px 30px;
    background: linear-gradient(var(--bs-white) 0 0) padding-box, linear-gradient(270deg, red, orange, yellow, green, cyan, blue, violet) border-box;
    border: 2px solid transparent;
    border-radius: 15px;
    background-size: 400% 400%;
    animation: rainbowBorder 12s linear infinite;
    box-shadow: 0px 6px 18px var(--bs-gray-400);
    max-width: 860px;
    width: 100%;
}




/* ICON + TITLE ROW */
.header-content {
    display: flex;
    align-items: center; /* Vertically center icon and text */
    justify-content: center; /* Horizontally center them */
    gap: 10px; /* Space between icon and title */
    margin-bottom: 10px; /* Space below before marquee */
}

.icon-wrapper img {
    display: block;
}

/* Title styling */
.indexheader {
 /*   font-size: var(--h4-font-size);*/
    font-weight: var(--h4-font-weight);
    line-height: var(--line-height-heading-small);
    margin: 0;
    padding: 0;
}

/* Marquee wrapper */
.marquee-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Marquee container */
.scroll-container {
    position: relative;
    overflow: hidden;
    height: 34px;
   /* background: white;*/
    border-radius: 8px;
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
    opacity: 0.5;
}

/* Scrolling text */
.scroll-text {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    left: 100%; /* Start fully off-screen to the right */
    animation: scroll-left 12s linear infinite;
    font-size: 16px;
    color: black;
}

@keyframes rainbowBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Highlight important notices */
.notice-item.important {
    color: #d32f2f;
    font-weight: bold;
}




.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;
}

.field-error {
    display: block; /* ensures message goes under input */
    color: #e74c3c; /* red color */
    font-size: 0.875rem; /* slightly smaller than normal text */
    margin-top: 4px; /* little space under input */
    font-weight: 500; /* semi-bold for emphasis */
}

.fs-7 {
    font-size: 14px !important;
}

.datepicker-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    border: none;
    pointer-events: none;
}

@media (min-width: 768px) {
    .btn-equal {
        width: 100%;
        height: 100%;
        min-height: 62px;
        white-space: normal;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}


/* Toggle Switch Style */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dc3545; /* red for inactive */
    transition: 0.4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #28a745; /* green for active */
}

    input:checked + .slider:before {
        transform: translateX(24px);
    }

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.toggle-label {
    font-size: 0.95rem;
    color: #333;
}

.backg {
    background: linear-gradient(rgba(000, 0, 0, 0.6)),url('/libraryManagement/images/memberDetails.jpg');
    text-align: center;
    padding: 80px 10px;
    background-repeat: no-repeat;
    border-radius: 25px;
    background-size: 100%
}

.pro_img {
    width: 160px !important;
    border: 5px solid #e9ecef !important;
    border-radius: 50% !important;
    height: 160px !important;
}


.monitor-reports-page {
    --size: 145px;
    --border-thickness: 2px;
    --bg-color: #fff;
    --shadow: 0 6px 18px var(--bs-gray-dark);
}



@keyframes rainbowMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.monitor-reports-page .circle-tile {
    --s: var(--size);
    position: relative;
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    box-shadow: var(--shadow);
    margin: 1.0rem auto;
    z-index: 1;
    overflow: visible;
    font-weight: 500;
    font-size: 1.00rem;
    color: #222;
    padding: 10px;
}

    
    .monitor-reports-page .circle-tile::before {
        content: "";
        position: absolute;
        left: calc(-1 * var(--border-thickness));
        top: calc(-1 * var(--border-thickness));
        width: calc(100% + (var(--border-thickness) * 2));
        height: calc(100% + (var(--border-thickness) * 2));
        border-radius: 50%;
        padding: var(--border-thickness);
        background: linear-gradient(270deg, #ff004d 0%, #ff7a00 15%, #ffd200 30%, #2ad400 45%, #00b8ff 60%, #6a00ff 75%, #ff004d 100%);
        background-size: 200% 200%;
        animation: rainbowMove 3s linear infinite;
        z-index: -1;
        -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--border-thickness)), black calc(100% - var(--border-thickness)));
        mask: radial-gradient(farthest-side, transparent calc(100% - var(--border-thickness)), black calc(100% - var(--border-thickness)));
    }

   
    .monitor-reports-page .circle-tile > .inner {
        position: relative;
        z-index: 2;
        text-align: center;
    }

/* Wrapper for alignment */
.monitor-reports-page .tile-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustment */
@media (max-width: 576px) {
    .monitor-reports-page {
        --size: 110px;
    }

        .monitor-reports-page .circle-tile {
            font-size: 1rem;
        }
}

.logo-sec {
    position: relative;
    text-align: center;
}

.logo-preview {
    width: 100%;
    min-height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2px 8px;
    border: 1px solid rgba(33, 37, 41, 0.75);
}

.edit-icon {
    top: 50%;
    right: 0px;
    cursor: pointer;
}

.bck h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    padding: 8px 0px;
    background: #0d6ea9;
    margin-top: 8px;
}

.bck h4 {
    font-size: 18px;
    font-weight: 500;
}

h4 span {
    font-size: 18px;
    color: var(--bs-link-hover-color);
}

.accordion-button {
   /* display: flow !important;
    text-align: center;*/
    padding: 14px 20px !important;
    background: linear-gradient(to right, rgba(0, 198, 255, 1), rgba(0, 114, 255, 1));
    color: #fff;
    font-weight: 600 !important;
    font-size: 19px;
}

    .accordion-button:not(.collapsed) {
        /*display: flow !important;
        text-align: center;*/
        color: #fff;
        background: linear-gradient(to right, rgba(0, 198, 255, 1), rgba(0, 114, 255, 1));
        box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    }

.mb-3.backg1 {
    text-align: center;
}

.memProfile {
    border: 2px solid var(--bs-primary);
    border-radius: 15px;
    margin: 5px;
   /* height: 165px;*/
}

.clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .clickable:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }



@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;
     }
 }







