@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

html {
    height: 100%;
}

/* Dynamic Background Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideDownFade {
    0% { opacity: 0; transform: translateY(-15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-down { animation: slideDownFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(-45deg, #f0f9f9, #e0f2f1, #f1f5f9, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.text-muted { color: #64748b !important; }

/* Navbar - Ultra-Realistic Glass Water Effect */
.navbar-kanesi-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 100px;
    margin: 25px auto 45px auto !important;
    width: 100%;
    max-width: 1400px; /* Aligns with standard large container */
    padding: 10px 14px !important;
    position: sticky;
    top: 25px;
    z-index: 1000;
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.12),
        inset 0 0 15px rgba(255, 255, 255, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.8) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    overflow: visible;
}

.navbar-kanesi-premium .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

.navbar-kanesi-premium .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    flex-grow: 1 !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

.navbar-kanesi-premium .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.navbar-kanesi-premium:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 40px 80px -12px rgba(0, 93, 93, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.6) !important;
}

/* Shimmer Sweep Effect - Fixed without overflow:hidden */
.navbar-kanesi-premium::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    background-position: -150% 0;
    border-radius: 100px;
    pointer-events: none;
    transition: none;
    z-index: -1;
}

.navbar-kanesi-premium:hover::after {
    background-position: 150% 0;
    transition: background-position 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-kanesi-premium .nav-link {
    font-size: 0.82rem;
    padding: 10px 22px !important;
    border-radius: 100px;
    margin: 0 4px;
    font-weight: 700;
    color: #475569 !important;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-kanesi-premium .nav-link:hover:not(.active) {
    color: #005d5d !important;
    background: rgba(0, 93, 93, 0.06) !important;
    transform: translateY(-2px) scale(1.02);
}

.navbar-kanesi-premium .nav-link.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 93, 93, 0.5);
}

.navbar-kanesi-premium .nav-link:hover .nav-icon {
    transform: scale(1.15) rotate(-8deg);
    color: #008080;
}

.navbar-kanesi-premium .nav-link.active:hover .nav-icon {
    color: white !important; /* Keep it white on active hover */
    transform: scale(1.1) rotate(5deg);
}

.navbar-kanesi-premium .nav-link:active {
    transform: translateY(1px) scale(0.96);
}

.navbar-kanesi-premium .nav-link.active {
    background: linear-gradient(135deg, #005d5d, #008080) !important;
    color: white !important;
    box-shadow: 0 12px 24px -6px rgba(0, 93, 93, 0.4);
}

.navbar-kanesi-premium .nav-link.active .nav-icon {
    color: white !important;
    stroke: white !important; /* Force white stroke for active icon */
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
    transform: scale(1.1);
}

.navbar-brand img {
    height: 38px !important;
    margin-left: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-avatar-sm {
    width: 32px;
    height: 32px;
    background: #005d5d;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 93, 93, 0.2);
}

.profile-dropdown-link {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(0, 93, 93, 0.05) !important;
    padding: 6px 16px 6px 8px !important;
}

.navbar-brand img {
    height: 45px;
    transition: transform 0.3s ease;
}

.login-logo {
    max-width: 250px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.navbar-brand:hover img { transform: scale(1.05); }

.nav-link {
    color: #475569 !important;
    font-weight: 600;
    padding: 8px 18px !important;
    margin: 0 2px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #005d5d !important;
    background: rgba(0, 93, 93, 0.05);
}

/* Premium Frosted Gradient Dropdown - Compact */
.dropdown-menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 250, 0.95) 100%) !important;
    backdrop-filter: blur(30px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(150%) !important;
    border: 1px solid #ffffff !important;
    border-radius: 24px !important;
    box-shadow: 
        0 20px 50px -10px rgba(0, 0, 0, 0.1),
        inset 0 0 10px rgba(255, 255, 255, 0.5) !important;
    padding: 8px !important;
    min-width: 210px;
    margin-top: 12px !important;
    animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-item {
    border-radius: 14px;
    padding: 12px 20px;
    font-weight: 700;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

.dropdown-item:last-child { margin-bottom: 0; }

.dropdown-item i {
    font-size: 1.1rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.dropdown-item:hover, .dropdown-item.active, .dropdown-item:active {
    background: rgba(0, 93, 93, 0.06) !important;
    color: #005d5d !important;
    transform: translateX(4px);
}

.dropdown-item.active, .dropdown-item:active {
    background: linear-gradient(135deg, #005d5d, #008080) !important;
    color: white !important;
    transform: none !important;
}

.dropdown-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #005d5d;
}

.dropdown-item.active i, .dropdown-item:active i {
    color: white !important;
}

.dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.06) !important;
    color: #ef4444 !important;
}

.dropdown-divider {
    border-top: 1px solid rgba(0, 93, 93, 0.05);
    margin: 8px 12px;
}

/* Premium Cards */
.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 93, 93, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: slideUpFade 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 93, 93, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

/* ULTRA PREMIUM BUTTONS */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

.btn-primary {
    background: #005d5d; /* Solid base for reliability */
    background: linear-gradient(135deg, #005d5d, #007a7a);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 93, 93, 0.25);
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 93, 93, 0.35);
    background: linear-gradient(135deg, #007a7a, #005d5d);
    color: white;
}

.btn-outline-primary {
    background: rgba(0, 93, 93, 0.04);
    color: #005d5d;
    border: 1px solid rgba(0, 93, 93, 0.15);
    font-weight: 500;
}

.btn-outline-primary:hover, .btn-check:checked + .btn-outline-primary {
    background: #005d5d !important;
    color: white !important;
    border-color: #005d5d !important;
    box-shadow: 0 8px 20px rgba(0, 93, 93, 0.3);
    transform: translateY(-3px);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.2);
}

.btn-light {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-light:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

/* KANESSI BRANDED BUTTONS - GLOBAL */
.btn-kanesi-primary {
    background: #005d5d;
    background: linear-gradient(135deg, #005d5d, #007a7a);
    color: white !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 93, 93, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-kanesi-primary:hover {
    background: linear-gradient(135deg, #004d4d, #005d5d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 93, 93, 0.3);
    color: white !important;
}

.btn-kanesi-danger {
    background: #ef4444;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-kanesi-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    color: white !important;
}

/* Action Pill Buttons */
.btn-pill {
    border-radius: 50px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* Tables */
.table th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    color: #64748b;
    border-bottom: 2px solid rgba(0, 93, 93, 0.08);
    padding: 20px 16px;
    background: rgba(0, 93, 93, 0.01);
}

.table td {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    vertical-align: middle;
    transition: background 0.3s ease;
}

.table tbody tr:hover td {
    background: rgba(0, 93, 93, 0.02);
}

/* Modern Badges */
.badge {
    padding: 0.6em 1em;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: none !important; /* Remove harsh shadows */
}

.badge.bg-success { background: rgba(16, 185, 129, 0.12) !important; color: #059669 !important; }
.badge.bg-warning { background: rgba(245, 158, 11, 0.12) !important; color: #b45309 !important; }
.badge.bg-danger { background: rgba(239, 68, 68, 0.12) !important; color: #dc2626 !important; }
.badge.bg-info { background: rgba(14, 165, 233, 0.12) !important; color: #0284c7 !important; }
.badge.bg-secondary { background: rgba(100, 116, 139, 0.12) !important; color: #475569 !important; }

/* Forms */
.form-control, .form-select {
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #005d5d;
    box-shadow: 0 0 0 4px rgba(0, 93, 93, 0.08);
}

/* Calculator Specifics */
.btn-group .btn {
    border-radius: 0;
}
.btn-group > .btn:first-of-type { border-radius: 12px 0 0 12px !important; }
.btn-group > .btn:last-of-type { border-radius: 0 12px 12px 0 !important; }

/* Custom Input Group for Login */
.custom-input-group {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.custom-input-group:focus-within {
    border-color: #005d5d;
    box-shadow: 0 0 0 4px rgba(0, 93, 93, 0.08);
    background: white;
}

.custom-input-group .input-group-text {
    background: transparent;
    border: none;
    padding-left: 1.2rem;
    padding-right: 0.8rem;
    color: #005d5d;
    font-size: 1.2rem;
}

.custom-input-group .form-control {
    background: transparent;
    border: none;
    padding: 0.75rem 1.2rem 0.75rem 0; /* Left padding is handled by group-text spacing */
    box-shadow: none;
    font-weight: 500;
}

.custom-input-group .form-control:focus {
    background: transparent;
}

.bg-success-light { background: rgba(16, 185, 129, 0.08) !important; }
.bg-warning-light { background: rgba(245, 158, 11, 0.08) !important; }

.text-primary { color: #005d5d !important; }
.text-success { color: #059669 !important; }
.text-warning { color: #b45309 !important; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn { padding: 0.6rem 1.2rem; width: 100%; margin-bottom: 0.5rem; }
    
    .container { padding-left: 15px; padding-right: 15px; }
    
    h2 { font-size: 1.75rem; }
    
    .table th {
        font-size: 0.65rem;
        padding: 12px 8px;
    }
    
    .table td {
        padding: 12px 8px;
    }
    
    /* Stack calculator result header on mobile */
    .result-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .result-header > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .login-logo {
        max-width: 280px; /* Larger logo for mobile impact */
    }
    
    .card {
        padding: 1.5rem !important;
        border-radius: 20px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}

/* Premium Select2 Styling - Ultra Custom */
.select2-container--default .select2-selection--single {
    height: 52px !important;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 10px !important;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #005d5d !important;
    box-shadow: 0 0 0 4px rgba(0, 93, 93, 0.08);
    background: white !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1e293b !important;
    font-weight: 500;
    padding-left: 10px !important;
    font-size: 0.95rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 15px !important;
    width: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #005d5d transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
    transition: transform 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection__arrow b {
    transform: rotate(180deg);
}

.select2-dropdown {
    border: 1px solid rgba(0, 93, 93, 0.05) !important;
    border-radius: 18px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    margin-top: 8px;
    animation: slideUpFade 0.3s ease;
}

.select2-container--default .select2-search--dropdown {
    padding: 12px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
    background: #f8fafc;
}

.select2-results__options {
    max-height: 250px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #005d5d !important;
    color: white !important;
}

.select2-container--default .select2-results__option {
    padding: 12px 20px !important;
    font-weight: 500;
    font-size: 0.9rem;
    color: #475569;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: rgba(0, 93, 93, 0.05) !important;
    color: #005d5d !important;
}

/* Premium Flatpickr Theme - Minimal & Bento Styled */
.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 93, 93, 0.1) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(0, 93, 93, 0.15) !important;
    font-family: 'Outfit', sans-serif !important;
    padding: 0 !important; /* Header will handle padding */
    overflow: hidden !important;
    z-index: 999999 !important;
}

/* Custom Header like user reference image */
.custom-fp-header {
    background: #f8fafc;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.custom-fp-header i {
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.custom-fp-header i:hover {
    color: #ef4444;
}

/* Datepicker Inner Styles */
.flatpickr-months {
    padding-top: 10px !important;
}

.flatpickr-day.selected {
    background: #005d5d !important;
    border-color: #005d5d !important;
    color: #ffffff !important; /* Ensure selected text is white */
    border-radius: 12px !important;
}

.flatpickr-day.today {
    border-color: #005d5d !important;
    color: #005d5d !important;
}

/* Fix: Today + Selected = White Text */
.flatpickr-day.selected.today, .flatpickr-day.today.selected {
    color: #ffffff !important;
    background: #005d5d !important;
}

/* Style the Month Dropdown */
.flatpickr-monthDropdown-months {
    background: transparent !important;
    border: none !important;
    color: #005d5d !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    padding: 5px 10px !important;
    border-radius: 8px !important;
}

.flatpickr-monthDropdown-months:hover {
    background: rgba(0, 93, 93, 0.05) !important;
}

/* Style the Year Input to be more obvious */
.flatpickr-current-month input.cur-year {
    font-weight: 700 !important;
    color: #005d5d !important;
    border-radius: 8px !important;
    padding: 2px 5px !important;
}

.flatpickr-current-month input.cur-year:hover {
    background: rgba(0, 93, 93, 0.05) !important;
}

/* Final Premium Designed Timepicker Styling */
.flatpickr-time {
    padding: 15px !important;
    border-top: none !important;
    background: #ffffff !important;
}

.flatpickr-time input {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #005d5d !important;
    background: #f8fafc !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    width: 60px !important;
}

.flatpickr-time .flatpickr-time-separator {
    color: #cbd5e1 !important;
    font-weight: 700 !important;
}

.flatpickr-time input:focus {
    background: rgba(0, 93, 93, 0.05) !important;
    box-shadow: 0 0 0 2px rgba(0, 93, 93, 0.1) !important;
    outline: none !important;
}

.flatpickr-time .flatpickr-am-pm {
    font-weight: 800 !important;
    color: #005d5d !important;
    background: #f1f5f9 !important;
    border-radius: 10px !important;
    padding: 5px !important;
    width: 50px !important;
}

.flatpickr-time .flatpickr-am-pm:hover {
    background: #e2e8f0 !important;
}

.flatpickr-calendar.hasTime.noCalendar {
    width: 200px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 93, 93, 0.1) !important;
    box-shadow: 0 15px 40px rgba(0, 93, 93, 0.15) !important;
}

/* Ensure selected 'today' date is visible */
.flatpickr-day.selected.today {
    color: #ffffff !important;
    background: #005d5d !important;
}

/* Consistency for readonly inputs */
.flatpickr-input[readonly] {
    background-color: white !important;
    cursor: pointer;
}
/* Premium SweetAlert2 Customization - Matched to Modal Aesthetic */
:root {
    --swal2-border-radius: 25px !important;
}

.swal2-popup.premium-swal-popup {
    border-radius: 25px !important; /* Compulsory 25px matching root variable */
    font-family: 'Outfit', sans-serif !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15) !important;
}

.premium-swal-title {
    color: #1e293b !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 12px !important;
}

.premium-swal-html {
    color: #64748b !important;
    font-weight: 500 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.premium-swal-input {
    border-radius: 14px !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 12px 18px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
    color: #1e293b !important;
    background: #f8fafc !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

.premium-swal-input:focus {
    border-color: #005d5d !important;
    box-shadow: 0 0 0 4px rgba(0, 93, 93, 0.08) !important;
    background: white !important;
}

.premium-swal-confirm {
    border-radius: 12px !important; /* Matched to theme .btn */
    font-weight: 700 !important;
    padding: 12px 35px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 93, 93, 0.25) !important;
}

.swal2-cancel.premium-swal-cancel {
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 12px 35px !important;
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    color: #475569 !important;
}

/* Ultra-Premium Pill Validation Message */
.swal2-validation-message {
    background: #ffffff !important;
    color: #ef4444 !important;
    border-radius: 100px !important; /* Pill shape for premium feel */
    border: 1px solid #fee2e2 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    padding: 12px 24px !important;
    margin: 20px auto 0 !important;
    width: fit-content !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.06) !important;
    animation: swal2-show 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), shakeError 0.5s !important;
}

.swal2-validation-message::before {
    content: '\F333' !important; /* Bootstrap Icon: exclamation-circle-fill */
    font-family: "bootstrap-icons" !important;
    font-size: 1.1rem !important;
    display: inline-block !important;
    color: #ef4444 !important;
    margin: 0 !important;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

.premium-swal-cancel:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #1e293b !important;
}

/* Custom Work Report Styles */
.custom-work-report-container {
    text-align: left;
    padding: 5px 5px;
}
.report-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.report-icon-wrapper {
    width: 54px;
    height: 54px;
    background: #005d5d10;
    color: #005d5d;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: inset 0 0 0 1px rgba(0, 93, 93, 0.05);
}
.report-title-group h4 {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
}
.premium-report-textarea {
    border-radius: 20px !important;
    border: 2px solid #f1f5f9 !important;
    padding: 18px !important;
    min-height: 140px !important;
    font-size: 0.95rem !important;
    background: #f8fafc !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    resize: none !important;
    color: #1e293b !important;
    box-shadow: none !important;
}
.premium-report-textarea:focus {
    background: #fff !important;
    border-color: #005d5d !important;
    box-shadow: 0 15px 35px rgba(0, 93, 93, 0.1) !important;
    transform: translateY(-2px);
}
.report-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
}

.premium-toast-popup {
    border-radius: 12px !important;
    padding: 0.8rem 1.2rem !important;
    font-family: 'Outfit', sans-serif !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.form-check-input:checked,
.form-switch .form-check-input:checked {
    background-color: #005d5d !important;
    border-color: #005d5d !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    box-shadow: none !important;
}

/* Premium Custom Slider-style Toggle */
.premium-switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 32px;
    flex-shrink: 0;
}

.premium-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.premium-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #f1f5f9;
    transition: .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50px;
    border: 2px solid #e2e8f0;
}

.premium-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.premium-switch input:checked + .premium-slider {
    background-color: #005d5d;
    border-color: #005d5d;
}

.premium-switch input:checked + .premium-slider:before {
    transform: translateX(26px);
    box-shadow: 0 4px 12px rgba(0, 93, 93, 0.3);
}

.premium-switch input:focus + .premium-slider {
    box-shadow: 0 0 0 4px rgba(0, 93, 93, 0.15);
}
/* --- ULTRA PREMIUM FLOATING MOBILE HEADER --- */
@media (max-width: 991.98px) {
    body {
        padding-top: 90px !important; 
    }

    .mobile-top-nav {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
        backdrop-filter: blur(25px) saturate(190%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(190%) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
        padding: 4px 10px 4px 20px;
        position: fixed;
        top: 15px; 
        left: 15px;
        right: 15px;
        z-index: 1055;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 68px;
        border-radius: 100px;
        box-shadow: 
            0 15px 35px -5px rgba(0, 0, 0, 0.05),
            inset 0 0 15px rgba(255, 255, 255, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.8) !important;
    }

    /* Shimmer for Mobile - Fixed */
    .mobile-top-nav::after {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        background-size: 200% 100%;
        background-position: -150% 0;
        border-radius: 100px; /* Matching parent curve */
        pointer-events: none;
        animation: mobileShimmer 8s infinite ease-in-out;
        z-index: -1;
    }

    @keyframes mobileShimmer {
        0% { background-position: -150% 0; }
        20%, 100% { background-position: 150% 0; }
    }

    .mobile-menu-trigger {
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        padding: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        margin-right: 5px;
    }

    .menu-icon-wrapper {
        width: 20px;
        height: 14px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-icon-wrapper span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #005d5d;
        border-radius: 10px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .mobile-menu-trigger.is-open {
        background: #005d5d;
        transform: rotate(90deg);
    }

    /* .mobile-menu-trigger.is-open .menu-icon-wrapper span {
        background-color: white;
    } */

    .mobile-menu-trigger.is-open .menu-icon-wrapper span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .mobile-menu-trigger.is-open .menu-icon-wrapper span:nth-child(2) { opacity: 0; }
    .mobile-menu-trigger.is-open .menu-icon-wrapper span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Fix SweetAlert Toast visibility with floating navbar */
    .swal2-container {
        z-index: 2000 !important;
    }
    
    .swal2-toast {
        margin-top: 85px !important; /* Push below floating navbar */
    }

    /* Premium Menu Overlay */
    .offcanvas-bento {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden;
    }

    /* Floating Orbs Background */
    .bento-bg-orbs {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        overflow: hidden;
        z-index: -1;
        pointer-events: none;
        opacity: 0.5;
    }

    .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        animation: orbFloat 20s infinite alternate ease-in-out;
    }

    .orb-1 { width: 300px; height: 300px; background: rgba(0, 93, 93, 0.15); top: -100px; right: -50px; }
    .orb-2 { width: 250px; height: 250px; background: rgba(16, 185, 129, 0.1); bottom: 10%; left: -50px; animation-delay: -5s; }
    .orb-3 { width: 200px; height: 200px; background: rgba(14, 165, 233, 0.1); top: 40%; right: 10%; animation-delay: -10s; }

    @keyframes orbFloat {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(30px, 50px) scale(1.1); }
    }

    .offcanvas-header {
        padding: 70px 25px 10px;
        background: transparent;
    }

    .offcanvas-title {
        font-weight: 800;
        letter-spacing: -1px;
        font-size: 1.8rem;
        background: linear-gradient(135deg, #005d5d, #003d3d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Ultra Premium Tiles */
    .bento-nav-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(85px, auto);
        gap: 10px;
        padding-bottom: 25px;
    }

    .nav-tile {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        padding: 15px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02), inset 0 0 20px rgba(255, 255, 255, 0.5);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        text-decoration: none !important;
        position: relative;
        overflow: hidden;
        opacity: 0;
        will-change: transform, opacity;
    }

    .nav-tile:after {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .nav-tile:active {
        transform: scale(0.95) translateY(2px);
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .nav-tile.active {
        background: white;
        border-color: #005d5d;
        box-shadow: 0 10px 30px rgba(0, 93, 93, 0.08);
    }

    .nav-tile i, .nav-tile svg.lucide {
        font-size: 1.3rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: #f8fafc;
        color: #005d5d;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
        padding: 10px; /* Space for the SVG */
    }

    .nav-tile.active i, .nav-tile.active svg.lucide {
        background: #005d5d;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 93, 93, 0.2);
    }

    .nav-tile span {
        font-size: 0.85rem;
        font-weight: 700;
        color: #475569;
        letter-spacing: 0.2px;
    }

    /* Specific Tile Shapes for Hierarchy */
    .tile-wide { grid-column: span 2; flex-direction: row; justify-content: flex-start; padding: 12px 20px; text-align: left; }
    .tile-wide i, .tile-wide svg.lucide { width: 40px; height: 40px; margin-right: 12px; }

    /* Profile Tile Specifics */
    .profile-tile {
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
        border: 1.5px solid white;
    }
    
    .profile-tile .profile-name { font-weight: 800; color: #0f172a; font-size: 1.1rem; display: block; }
    .profile-tile .profile-role { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

    /* Logout Bar */
    .logout-tile {
        margin-top: 10px;
        background: rgba(239, 68, 68, 0.03);
        border: 1px solid rgba(239, 68, 68, 0.08);
    }
    .logout-tile i, .logout-tile svg.lucide { 
        color: #ef4444 !important; 
        background: rgba(239, 68, 68, 0.08) !important;
        box-shadow: 0 4px 10px rgba(239, 68, 68, 0.05) !important;
    }
    .logout-tile span { color: #ef4444; }

    /* Animation Entry - Ultra Fast */
    .offcanvas.show .nav-tile {
        animation: tileFadeUp 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
    }

    @keyframes tileFadeUp {
        0% { opacity: 0; transform: translateY(5px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    /* Minimal staggered entry */
    .offcanvas.show .nav-tile:nth-child(1) { animation-delay: 0.05s; }
    .offcanvas.show .nav-tile:nth-child(2) { animation-delay: 0.07s; }
    .offcanvas.show .nav-tile:nth-child(3) { animation-delay: 0.09s; }
    .offcanvas.show .nav-tile:nth-child(4) { animation-delay: 0.11s; }
    .offcanvas.show .nav-tile:nth-child(5) { animation-delay: 0.13s; }
    .offcanvas.show .nav-tile:nth-child(6) { animation-delay: 0.15s; }
    .offcanvas.show .nav-tile:nth-child(7) { animation-delay: 0.17s; }
    .offcanvas.show .nav-tile:nth-child(8) { animation-delay: 0.19s; }
    .offcanvas.show .nav-tile:nth-child(9) { animation-delay: 0.21s; }
}

/* --- GLOBAL PREMIUM LOADER --- */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInScale 0.6s ease-out;
}

.cyber-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.ring-1 {
    width: 100px;
    height: 100px;
    border-top-color: #005d5d;
    animation: cyber-spin 1s linear infinite;
}

.ring-2 {
    width: 80px;
    height: 80px;
    border-bottom-color: #00a8a8;
    animation: cyber-spin 1.5s linear reverse infinite;
}

.ring-3 {
    width: 60px;
    height: 60px;
    border-right-color: #005d5d;
    animation: cyber-spin 0.8s ease-in-out infinite;
}

.cyber-spinner i {
    font-size: 2.2rem;
    color: #005d5d;
    z-index: 1;
    animation: energySurge 2s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(0, 93, 93, 0.3));
}

@keyframes energySurge {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 5px rgba(0, 93, 93, 0.2)) brightness(1);
    }
    50% { 
        transform: scale(1.15); 
        filter: drop-shadow(0 0 20px rgba(0, 168, 168, 0.6)) brightness(1.2);
    }
}

@keyframes cyber-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #005d5d;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 20px;
    animation: textPulse 1.5s infinite;
}

.top-progress-bar {
    position: absolute;
    top: 0; left: 0; height: 3px;
    width: 0;
    background: linear-gradient(90deg, #005d5d, #00a8a8);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 93, 93, 0.5);
}

@keyframes textPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Select2 Glass Overrides */
.select2-container--default .select2-selection--single {
    background: transparent !important;
    border: none !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1e293b !important;
    font-weight: 600 !important;
    padding-left: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 5px !important;
}
.select2-dropdown {
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
}
.select2-results__option {
    padding: 10px 15px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}
.select2-results__option--highlighted[aria-selected] {
    background-color: #005d5d10 !important;
    color: #005d5d !important;
}
/* Ultra-Premium Tooltip Styles */
.tooltip {
    z-index: 10000 !important;
}

.tooltip-inner {
    background: #1e293b !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    padding: 8px 15px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bs-tooltip-top .tooltip-arrow::before { border-top-color: #1e293b !important; }
.bs-tooltip-bottom .tooltip-arrow::before { border-bottom-color: #1e293b !important; }
.bs-tooltip-start .tooltip-arrow::before { border-left-color: #1e293b !important; }
.bs-tooltip-end .tooltip-arrow::before { border-right-color: #1e293b !important; }

/* Tooltip animation */
.tooltip.show {
    animation: tooltip-fade-in 0.2s ease-out forwards;
}

@keyframes tooltip-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   KANESI PREMIUM FORM VALIDATION DESIGN SYSTEM
   ========================================================================== */

/* 1. Invalid Glow Highlights for Inputs & Textareas */
.form-control.is-invalid,
.form-select.is-invalid,
.minimal-textarea.is-invalid,
.custom-input.is-invalid {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.01) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08) !important;
}

/* 2. Interactive Input Group Wrappers Invalid Styling */
.floating-input-group.wrapper-invalid .form-control,
.floating-input-group.wrapper-invalid .form-select,
.input-wrapper.wrapper-invalid .custom-input,
.minimal-input-plate.wrapper-invalid {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.01) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08) !important;
}

/* 3. Shift Icon color inside invalid wrappers */
.floating-input-group.wrapper-invalid i,
.input-wrapper.wrapper-invalid i,
.minimal-input-plate.wrapper-invalid i {
    color: #ef4444 !important;
}

/* Shift Floating labels to red if focused inside an invalid group */
.floating-input-group.wrapper-invalid:focus-within label {
    color: #ef4444 !important;
}

/* 4. Select2 Custom Invalid Styling */
.is-invalid + .select2-container .select2-selection--single,
.select2-hidden-accessible.is-invalid + .select2-container .select2-selection--single {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.01) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08) !important;
}

/* 5. Hide Bootstrap 5 Native Invalid/Valid Exclamation Overlap Icons */
.form-control.is-invalid, 
.form-select.is-invalid, 
.was-validated .form-control:invalid, 
.was-validated .form-select:invalid {
    background-image: none !important;
    padding-right: 1.2rem !important;
}

/* 6. Lock Sibling Labels in Floating Groups to Red */
.floating-input-group.wrapper-invalid label,
.floating-input-group.wrapper-invalid:focus-within label {
    color: #ef4444 !important;
}

/* 7. Turn Select2 Dropdown Icon Red When Invalid */
.is-invalid + .select2-container .select2-selection__arrow b,
.select2-hidden-accessible.is-invalid + .select2-container .select2-selection__arrow b {
    border-color: #ef4444 transparent transparent transparent !important;
}

/* 8. Custom Themed Invalid Feedback Label */
.kanesi-invalid-feedback {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    font-size: 0.72rem;
    font-weight: 800;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Outfit', sans-serif;
    animation: slideDownMin 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.kanesi-invalid-feedback i {
    font-size: 0.85rem;
    color: #ef4444;
}

/* Keyframe for beautiful downward transition */
@keyframes slideDownMin {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SWEETALERT2 PREMIUM GLASSMORPHISM THEME
   ========================================================================== */

/* Global Custom Alert Popup */
.premium-swal-popup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 253, 253, 0.94) 100%) !important;
    backdrop-filter: blur(25px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(160%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 28px !important;
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.12),
        0 18px 36px -18px rgba(0, 93, 93, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.6) !important;
    font-family: 'Outfit', sans-serif !important;
    padding: 35px 25px !important;
}

/* Title & Content Styling */
.premium-swal-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    font-size: 1.6rem !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 12px !important;
}

.premium-swal-html {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

/* Custom Buttons inside SweetAlert2 */
.premium-swal-confirm {
    background: linear-gradient(135deg, #005d5d, #007a7a) !important;
    color: white !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(0, 93, 93, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-swal-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(0, 93, 93, 0.35) !important;
}

.premium-swal-cancel {
    background: #f1f5f9 !important;
    color: #475569 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s !important;
}

.premium-swal-cancel:hover {
    background: #e2e8f0 !important;
    transform: translateY(-1px) !important;
}

/* Premium Toast Glassmorphism styling */
.premium-toast-popup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%) !important;
    backdrop-filter: blur(20px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
    border: 1px solid rgba(0, 93, 93, 0.08) !important;
    border-radius: 18px !important;
    box-shadow: 
        0 15px 35px -5px rgba(0, 0, 0, 0.06),
        0 5px 15px -8px rgba(0, 93, 93, 0.05) !important;
    padding: 12px 18px !important;
    font-family: 'Outfit', sans-serif !important;
}

.premium-toast-popup .swal2-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    color: #1e293b !important;
}

/* Custom Success/Error Icons in Toast */
.premium-toast-popup .swal2-icon {
    border-width: 2px !important;
    margin: 0 10px 0 0 !important;
}

.premium-toast-popup .swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: #059669 !important;
}
.premium-toast-popup .swal2-icon.swal2-success {
    border-color: #10b981 !important;
    color: #10b981 !important;
}
.premium-toast-popup .swal2-icon.swal2-error {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

/* Progress bar inside Toast matching the teal/cyan colors */
.premium-toast-popup .swal2-timer-progress-bar {
    background: linear-gradient(90deg, #005d5d, #00a8a8) !important;
    height: 3px !important;
}

