:root {
    --primary: #ED7D31;
    --primary-dark: #E55A2B;
    --primary-light: #FF9B71;
    --secondary: #2E86AB;
    --dark: #1E2329;
    --darker: #161A1F;
    --light: #F8F9FA;
    --gray: #8D99AE;
    --white: #ffffff;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #E53935;
    --card-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 100px;
    --header-height: 80px;
    --footer-height: 60px;
    --section-header: #FDF6ED;
    /* Font Size Variables */
    --font-xl: 1rem; /* 16px - Large headings, main titles */
    --font-lg: 0.9375rem; /* 15px - Sub headings, important text */
    --font-md: 0.875rem; /* 14px - Regular content, labels */
    --font-sm: 0.8125rem; /* 13px - Secondary content, descriptions */
    --font-xs: 0.75rem; /* 12px - Small text, helper text, icons */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f5ff;
    color: #333;
    /*    display: flex;
    min-height: 100vh;*/
    transition: var(--transition);
}

.form-label,
.card-header h2,
.modal-title {
    font-size: var(--font-lg);
}

h1 {
    font-size: 1.2rem !important;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    margin-bottom:25px;
}




.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: hsl(from var(--primary) h s calc(l * 0.9));
        border-color: hsl(from var(--primary) h s calc(l * 0.9));
    }

    .btn-primary:active {
        background-color: hsl(from var(--primary) h s calc(l * 0.9)) !important;
        border-color: hsl(from var(--primary) h s calc(l * 0.9)) !important;
    }

    .btn-primary:focus {
        background-color: hsl(from var(--primary) h s calc(l * 0.9)) !important;
        border-color: hsl(from var(--primary) h s calc(l * 0.9)) !important;
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}


.btn:focus, .btn-primary:focus {
    box-shadow: none !important;
}


    .btn-outline-primary:hover {
        background-color: hsl(from var(--primary) h s calc(l * 0.9));
        border-color: hsl(from var(--primary) h s calc(l * 0.9));
    }

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

    .btn-outline-secondary:hover {
        background-color: #f8f9fa;
        color: black;
    }

.card-header {
    /*    background-color: #fff;*/
    border-bottom: 1px solid #e9ecef;
    color: white;
    background: var(--primary) !important;
}

.modal-header{
    background-color:var(--primary)
}
/*custom styles */
.custom-txt {
    font-size: var(--font-md);
}


/* style end  */
/*.app-container {
    display: flex;
    width: 100%;
}
*/
.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(237, 125, 49, 0.25);
    }

form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.modal-content {
    border-radius: 8px;
}

.form-label.primary-color {
    font-weight: 700;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: bold;
    background-color: #f5f5f5; /* optional: subtle background for active tab */
    border-bottom: 2px solid var(--primary); /* optional: underline effect */
}

/* Sidebar Styles */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--darker), var(--dark));
    color: white;
    /*    padding: 20px 0;*/
    height: 100vh;
    position: fixed;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .sidebar.icon-only {
        width: var(--sidebar-collapsed-width);
    }

        .sidebar.icon-only .logo h1,
        .sidebar.icon-only .menu-item span,
        .sidebar.icon-only .arrow,
        .sidebar.icon-only .submenu,
        .sidebar.icon-only .sidebar-footer {
            display: none;
        }

        .sidebar.icon-only .logo {
            justify-content: center;
            padding: 0 0 30px;
        }

        .sidebar.icon-only .menu-item {
            justify-content: center;
            padding: 16px;
            margin: 8px;
        }

            .sidebar.icon-only .menu-item i {
                margin-right: 0;
                font-size: 1.4rem;
            }



/*    .logo i {
        width: 40px;
        margin-right: 15px;
        animation: pulse 2s infinite;
        font-size: 2rem;
    }*/

/*    .logo h1 {
        font-size: 1.6rem;
        font-weight: 700;
        background: linear-gradient(to right, #FFD166, #FF9B71);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 0.5px;
    }*/


    .logo img {
        width: 100%;
/*        border: 3px solid #ED7D31;
        border-radius: 50%;*/
        max-width: 75px;
    }



.logo-1 {
    display: flex;
    justify-content: center;
    /*        border: 3px solid #ED7D31;
        border-radius: 50%;*/
}


    .logo-1 img {
        width: 100%;
        max-width: 75px;
        padding: 5px;
        /*        border: 3px solid #ED7D31;
        border-radius: 50%;*/
    }


/*clock style */
#liveClock {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--dark);
    background: var(--section-header);
    padding: 6px 14px;
    border-radius: var(--card-radius);
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow);
    text-decoration: none; /* since it's an <a> */
    transition: var(--transition);
    display: inline-block;
    min-width: 100px;
    text-align: center;
}


/*style end */


.menu {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.menu-item {
    /*    padding: 16px 12px;*/
    /*    display: flex;*/
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    /*    margin: 8px 15px;*/
    /*    border-radius: 8px;*/
    position: relative;
    overflow: hidden;
    transform: translateX(-10px);
    /*    opacity: 0;*/
    animation: slideInLeft 0.6s forwards;
}

    .menu-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .menu-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .menu-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .menu-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .menu-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .menu-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    .menu-item:nth-child(7) {
        animation-delay: 0.7s;
    }

    .menu-item:nth-child(8) {
        animation-delay: 0.8s;
    }

    .menu-item:hover,
    .menu-item.active {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(0);
    }

    .menu-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background: var(--primary);
        transition: var(--transition);
    }

    .menu-item:hover::before,
    .menu-item.active::before {
        height: 100%;
    }

    /*    .menu-item i {
        margin-right: 15px;
        font-size: 1rem;
        width: 24px;
        text-align: center;
        color: var(--primary-light);
        z-index: 1;
    }*/

    .menu-item span {
        color: white;
        font-weight: 500;
        z-index: 1;
        flex: 1;
        /*        font-size: 12.5px;*/
    }

    .menu-item a {
        text-decoration: none;
    }

    .menu-item .arrow {
        transition: var(--transition);
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .menu-item.active .arrow {
        transform: rotate(90deg);
        color: white;
    }

/* Submenu Styles */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /*    margin: 0 15px;*/
}

    .submenu.active {
        max-height: 500px;
        margin-top: -8px;
        margin-bottom: 8px;
    }

.submenu-item {
    padding: 12px 20px 12px 60px;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
}

    /*    .submenu-item:hover {
        color: white;
        background: rgba(255, 255, 255, 0.05);
    }*/

    .submenu-item a {
        /*        font-size: 12.5px;*/
        color: #fff !important;
    }

        .submenu-item a:hover,
        .submenu-item a:active {
            color: var(--primary) !important;
        }

/*    .submenu-item::before {
        content: '';
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary-light);
        opacity: 1;
        transition: var(--transition);
    }*/

.submenu-icon {
    width: 16px; /* adjust size */
    height: 16px;
    margin-right: 8px; /* space between image and text */
    vertical-align: middle;
}


    /*    .submenu-item:hover::before {
        opacity: 1;
    }*/

    .submenu-item.active {
        color: white;
        font-weight: 500;
    }

        .submenu-item.active::before {
            opacity: 1;
            background: var(--primary);
        }

.sidebar-footer {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease-in;
}

/* Main Container */
.main-container {
    flex: 1;
/*    margin-left: var(--sidebar-width);*/
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100vh;
    transform-origin: top left;
}

.sidebar.icon-only ~ .main-container {
    margin-left: var(--sidebar-collapsed-width);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0 15px;
    height: var(--header-height);
    box-shadow: var(--shadow);
    z-index: 10;
    animation: fadeInDown 0.8s ease-out;
    gap:10px;
}

.header-title h1 {
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 700;
}

.header-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 5px 0 5px 0;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

    .control-btn:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-3px) rotate(5deg);
        box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
    }

.sidebar-control {
    display: flex;
    align-items: center;
   justify-content:center;
    border-radius: 15px;
/*    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
}

.sidebar-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    background: transparent;
    color: var(--gray);
}

    .sidebar-btn.active,
    .sidebar-btn:hover {
        background: var(--primary);
        color: white;
        box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
        transform: scale(1.05);
    }

.theme-control {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.theme-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    background: transparent;
    color: var(--gray);
}

    .theme-btn.active,
    .theme-btn:hover {
        background: var(--primary);
        color: white;
        box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
        transform: scale(1.05);
    }

/* Main Content */
.main-content {
    padding: 30px;
    flex: 1;
    /*    overflow-y: auto;*/
}


.section-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-left: 35px;
    cursor:pointer;
}

    .section-title::before {
        content: "\f078"; /* Unicode for fa-chevron-down */
        font-family: "Font Awesome 5 Free"; /* Make sure Font Awesome is loaded */
        font-weight: 900; /* Use 900 for solid icons */
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 25px; /* Adjust size */
        color: var(--primary); /* Set icon color */
    }

/*.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
*/

.modules-container {
    display: flex;
   
}


/*.modules-container {
    display: none;*/ /* hidden by default */
    
/*}*/
.module-card {
/*    background: white;
    border-radius: var(--card-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;*/
    text-decoration:none;
/*    display:block;*/
}

/*    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }*/

/*    .module-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.05) 100%);
        z-index: 0;
        opacity: 0;
        transition: var(--transition);
    }*/

    .module-card:hover::after {
        opacity: 1;
    }


.module-header{
    display: flex;
    justify-content: start;
    align-items: center;
/*    gap: 10px;*/
}
     .in-out {
            gap: 10px;
    }

    .module-header {
        text-decoration: none;
    }

.module-title {
    font-size: 1rem;
    color: #7F7F7F;
    margin: 0;
    width: 100%;
    max-width: 100px;
    font-weight: 400;
    text-wrap:wrap;
}

.module-icon {
    width: 75px;
    height: 75px;
    /* border-radius: 12px; */
    /* background: rgba(67, 97, 238, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    /* font-size: 1.4rem; */
    /* transition: var(--transition); */
}

    .module-icon img.icon-img {
       
        height: 50px;
        object-fit: contain;
    }

/*.module-card:hover .module-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(67, 97, 238, 0.2);
}*/

.module-card:hover .module-title {
    color:var(--primary);
}

select {
    color: #212529 ;
}

option {
    color: #212529;
}

/* When the selected option has an empty value */
select:has(option:checked[value=""]) {
    color: #999;
    font-size:13px;
   
}


/* Mobile Sidebar Styles */
@media (min-width:768px) {
    .mob-header-controles {
        display: none;
    }

/*    .sidebar-toggle {
        display: none !important;
    }*/
}

@media (max-width: 768px) {
/*    .desk-header-controls {
        display: none !important;
    }*/

    .mob-header-controles {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 20px;
        padding: 20px;
    }

    .main-container {
        margin: 0 !important;
    }

    .sidebar {
        transform: translateX(-100%);
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: var(--sidebar-width);
        z-index: 999;
        transition: var(--transition);
    }

        .sidebar.open {
            transform: translateX(0);
        }

        .sidebar.icon-only {
            width: var(--sidebar-collapsed-width);
        }

            .sidebar.icon-only.open {
                transform: translateX(0);
            }

    .main-container {
        margin-left: 0;
    }

    .sidebar-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--primary);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }
    .sidebar-toggle:hover {
        background: white;
        color: var(--primary);
       
    }
}

@media (max-width: 768px) {
    .modules-container {
        grid-template-columns: 1fr;
    }

/*    .main-content {
        padding: 20px;
    }*/

/*    .header {
        justify-content: center !important;
    }*/
}

@media (max-width:480px) {
    .header {
        padding: 0 15px;
    }

    .copyright {
        display: none;
    }
}
/* sidebar mobile style */

@media(min-width:767px) {
    .mobile-header-controls {
        display: none;
    }
}
    
    @media(max-width:768px) {
        .desk-toggle-icons{
            display: none;
        }
    }

/*style end */
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-card {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    width: 100%;
    max-width: 200px;
}

    .module-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .module-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .module-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .module-card:nth-child(4) {
        animation-delay: 0.4s;
    }

/* Footer */
.footer {
    height: var(--footer-height);
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    color: var(--gray);
    font-size: 0.95rem;
    animation: fadeInUp 1.2s ease-out;
}

.footer-links a {
    color: var(--primary-dark);
    text-decoration: none;
    margin-left: 25px;
    transition: var(--transition);
    font-weight: 500;
}

    .footer-links a:hover {
        color: var(--primary);
        text-decoration: underline;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Loader Animations */
@keyframes bounce {
    to {
        transform: translateY(-12px);
        opacity: 0.6;
    }
}
/* style end */

/* Theme Classes */
.theme-blue {
    --primary: #2196F3;
    --primary-dark: #1976D2;
    --primary-light: #64B5F6;
    --secondary: #03A9F4;
}

.theme-green {
    --primary: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #81C784;
    --secondary: #8BC34A;
}

.theme-purple {
    --primary: #9C27B0;
    --primary-dark: #7B1FA2;
    --primary-light: #BA68C8;
    --secondary: #673AB7;
}


/* Global Font Classes */
.font-xl {
    font-size: var(--font-xl) !important;
}

.font-lg {
    font-size: var(--font-lg) !important;
}

.font-md {
    font-size: var(--font-md) !important;
}

.font-sm {
    font-size: var(--font-sm) !important;
}

.font-xs {
    font-size: var(--font-xs) !important;
}

.bg-main {
    background: var(--primary) !important;
}

/* Action button styles using font variables */
.action-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.logout-txt:active {
    background-color: #e9ecef;
}

    .action-btn i {
        font-size: var(--font-tertiary);
    }

#tblCounterList {
    font-size: 0.78rem;
}

.action-col {
    width: 70px;
    min-width: 60px;
    max-width: 80px;
    text-align: center !important;
    vertical-align: middle !important;
}

.edit-icon {
    color: #fff !important;
    background: var(--primary);
    border-radius: 50%;
    padding: 3px 5px;
    display: inline-block;
    font-size: 0.95rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

    .edit-icon:hover {
        background: #fff;
        color: var(--primary) !important;
        border: 1px solid var(--primary);
    }


/* table design */

.dataTables_info {
    padding-left: 1rem !important;
    padding-bottom: 0.5rem !important;
}

.dataTables_paginate {
    padding-right: 1rem !important;
    padding-bottom: 0.5rem !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 2px;
    border-radius: 4px;
    border: none;
}
    /* Stronger selector for current page */
    .dataTables_wrapper .dataTables_paginate .paginate_button.current,
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:focus,
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        background: var(--primary) !important;
        color: #fff !important;
        border: none !important;
        box-shadow: none !important;
    }

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 2px 8px;
}

.dataTables_length {
    padding: 8px;
}

    .dataTables_length select {
        width: auto !important;
        min-width: 60px;
        padding-right: 2rem !important;
        background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14l-4.796-5.481C1.451 5.21 1.889 4.5 2.646 4.5h10.708c.757 0 1.195.71.195 1.159l-4.796 5.481a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/1rem 1rem;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
    }
/* Make DataTables sort arrows white on colored header, except no-sort */
table.dataTable thead th {
    background: var(--primary) !important;
    color: #fff !important;
    border: none;
    letter-spacing: 0.05em;
}

    table.dataTable thead th.no-sort:after,
    table.dataTable thead th.no-sort:before {
        display: none !important;
    }

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    color: #fff !important;
    opacity: 1 !important;
}

#tblCounterList tbody tr:hover {
    background: #FFF3E6;
}

.page-item.active .page-link {
    background-color: var(--primary) !important;
}
/* End - table design */

/* Screening result styling */
.response-text {
    /*font-weight: 600;
    font-size: 0.8rem;
    color: red;*/ /* Bright, modern red */
    /*background-color: #fff8e1;*/ /* Soft light yellow */
    /*padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #ffecb3;*/ /* Subtle yellow border */
    /*display: inline-block;*/

    display: none;
}





.toast-success {
    background-color: #51a351 !important;
    opacity: 1 !important;
}

.toast-error {
    background-color: #bd362f !important;
    opacity: 1 !important;
}



/** Start  - Select 2 integration for dropdowns*/

/* Select2 height matching with Bootstrap form controls */
.select2-container .select2-selection--single {
    height: 38px !important;
    line-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
    padding-left: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
}

/* Make dropdown options match height */
.select2-results__option {
    padding: 8px 12px !important;
}

/* Match border radius and colors with Bootstrap */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Focus state to match Bootstrap */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}
/** Start  - Select 2 integration for dropdowns*/


.disabled-dropdown {
    pointer-events: none;
    opacity: 0.5; /* This will make the dropdown look disabled */
    background-color: #e9ecef; /* Optional: change the background color */
}

.hides {
    pointer-events: none;
    opacity: 0.4;
}

.hide {
    display: none !important;
}


/*03-09-2025 added code */

.form-control:disabled {
    cursor: not-allowed;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: auto;
}


.select2 {
    font-size: var(--font-sm);
}

.select2-results {
    font-size: var(--font-sm);
}

/*pagination code */

ul.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px;
    margin: 20px 0;
    list-style: none;
}

    /* Pagination Items */
    ul.pagination li.page-item {
        border-radius: var(--card-radius);
        overflow: hidden;
        transition: var(--transition);
    }

        /* Page Links */
        ul.pagination li.page-item a.page-link {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 8px 14px;
            font-size: var(--font-md);
            font-weight: 500;
            color: var(--dark);
            background: var(--light);
            border: 1px solid var(--gray);
            border-radius: var(--card-radius);
            text-decoration: none;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin: 0;
        }

            /* Hover and Focus States */
            ul.pagination li.page-item a.page-link:hover {
                background: var(--primary-light);
                color: var(--white);
                border-color: var(--primary);
            }

        /* Active Page */
        ul.pagination li.page-item.active a.page-link {
            background: var(--primary);
            color: var(--white);
            font-weight: bold;
            border-color: var(--primary-dark);
            box-shadow: 0 4px 12px rgba(237, 125, 49, 0.4);
        }

        /* Disabled State */
        ul.pagination li.page-item.disabled a.page-link {
            background: var(--gray);
            color: var(--white);
            cursor: not-allowed;
            border-color: var(--gray);
            opacity: 0.6;
        }

        /* Ellipsis */
        ul.pagination li.page-item#asnReleaseTable_ellipsis a.page-link {
            background: transparent;
            border: none;
            box-shadow: none;
            color: var(--gray);
            cursor: default;
        }

        /* Hover Animation */
        ul.pagination li.page-item:not(.disabled):hover {
            transform: translateY(-2px);
        }

/* 04-09-2025 added code */


.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {

    box-shadow:none !important;
}

/* Responsive: smaller devices */
@media (max-width: 576px) {
    ul.pagination li.page-item a.page-link {
        padding: 6px 10px;
        font-size: var(--font-sm);
    }
}






/* 10-09-2025 added css */

.wms-glob-font {
    font-size: 0.78rem;
}

table th {
    font-size: 0.78rem;
}


table td {
    font-size: 0.78rem;
}



/*Breadcrumbs style*/

/* Breadcrumb Styles */
.breadcrumb-container {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 15px 30px;
/*    margin-bottom: 1.5rem;*/
/*    border: 1px solid #e9ecef;*/
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-weight:500;
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: "/";       
        color: #6c757d;
    }

    .breadcrumb-item.active {
        color: #495057;
        font-weight: 500;
    }

.breadcrumb-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

    .breadcrumb-link:hover {
        color: var(--primary-dark);
        text-decoration: none;
    }