/* Garage Management System - Eye-Protected Enhanced Stylesheet */
/* ============================================================== */
/* Optimized for reduced eye strain with warm, comfortable colors */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Eye-Friendly Primary Colors - Softer, Warmer Tones */
    --primary-color: #4a90e2;        /* Softer blue */
    --primary-dark: #2d5f8d;         /* Muted dark blue */
    --primary-light: #6ba3e8;        /* Light comfortable blue */
    
    /* Eye-Protected Secondary Colors */
    --secondary-color: #5a7a9e;      /* Soft navy */
    --success-color: #52b788;        /* Gentle green */
    --danger-color: #e07a5f;         /* Warm coral instead of harsh red */
    --warning-color: #f4a261;        /* Soft orange */
    --info-color: #7cb8d1;           /* Calm blue */
    
    /* Warm Neutral Colors for Eye Comfort */
    --dark-color: #2d3748;           /* Soft dark gray */
    --gray-dark: #4a5568;            /* Comfortable dark gray */
    --gray-medium: #718096;          /* Medium gray */
    --gray-light: #a0aec0;           /* Light gray */
    --light-color: #f7f9fb;          /* Warm off-white */
    --white: #ffffff;
    --border-color: #e2e8f0;         /* Soft border */
    --text-color: #4a5568;           /* Comfortable text color */
    --body-bg: #f8fafb;              /* Warm background */
    
    /* Accent Colors for Visual Comfort */
    --accent-warm: #f4a261;          /* Warm accent */
    --accent-cool: #7cb8d1;          /* Cool accent */
    --accent-green: #52b788;         /* Green accent */
    
    /* Layout */
    --sidebar-width: 270px;
    --header-height: 65px;
    
    /* Softer Shadows for Eye Comfort */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 24px 0 rgba(0, 0, 0, 0.15);
    
    /* Smooth Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: var(--text-color);
    background-color: var(--body-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.sidebar-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Selection Color - Eye Friendly */
::selection {
    background-color: rgba(82, 183, 136, 0.2);
    color: var(--dark-color);
}

/* ================================================ */
/* LOGIN PAGE STYLES */
/* ================================================ */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6ba3e8 0%, #5a7a9e 50%, #52b788 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.login-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.login-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 440px;
    padding: 45px;
    animation: fadeInUp 0.6s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo i {
    font-size: 52px;
    color: var(--accent-green);
    margin-bottom: 18px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.login-logo h1 {
    color: var(--dark-color);
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-logo p {
    color: var(--gray-medium);
    font-size: 14px;
    font-weight: 400;
}

/* ================================================ */
/* ENHANCED FORM STYLES */
/* ================================================ */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 13px;
    letter-spacing: 0.2px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition-fast);
    background-color: var(--white);
    color: var(--text-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
    background-color: #fafbfc;
}

.form-control:disabled {
    background-color: var(--light-color);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    color: var(--danger-color);
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

/* ================================================ */
/* ENHANCED BUTTON STYLES */
/* ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-dark), #1e4a73);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #3d9970);
    color: var(--white);
}

.btn-success:hover:not(:disabled) {
    background: linear-gradient(135deg, #3d9970, #2d7a5a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #d4624a);
    color: var(--white);
}

.btn-danger:hover:not(:disabled) {
    background: linear-gradient(135deg, #d4624a, #b84d38);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #e88a48);
    color: var(--white);
}

.btn-warning:hover:not(:disabled) {
    background: linear-gradient(135deg, #e88a48, #d17235);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gray-medium), var(--gray-dark));
    color: var(--white);
}

.btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gray-dark), #3a4556);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 12px;
}

.btn i {
    margin-right: 6px;
}

/* ================================================ */
/* DASHBOARD LAYOUT */
/* ================================================ */

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ================================================ */
/* ENHANCED SIDEBAR NAVIGATION */
/* ================================================ */

.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    color: var(--white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.sidebar-logo {
    padding: 22px 20px;
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.sidebar-logo h2 {
    font-size: 23px;
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.sidebar-logo h2 i {
    font-size: 26px;
    color: var(--accent-green);
    filter: drop-shadow(0 0 8px rgba(82, 183, 136, 0.4));
}

.sidebar-menu {
    list-style: none;
    padding: 18px 0;
}

.sidebar-menu > li {
    margin-bottom: 4px;
    position: relative;
}

.sidebar-menu > li > a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #cbd5e0;
    font-size: 14px;
    transition: var(--transition-fast);
    position: relative;
    border-left: 4px solid transparent;
    font-weight: 500;
}

.sidebar-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-left-color: var(--accent-green);
    padding-left: 24px;
}

.sidebar-menu > li > a.active {
    background: linear-gradient(90deg, rgba(82, 183, 136, 0.2), rgba(82, 183, 136, 0.05));
    color: var(--white);
    border-left-color: var(--accent-green);
    font-weight: 600;
    box-shadow: inset 0 0 20px rgba(82, 183, 136, 0.1);
}

.sidebar-menu > li > a i {
    margin-right: 14px;
    font-size: 17px;
    width: 24px;
    text-align: center;
    transition: var(--transition-fast);
}

.sidebar-menu > li > a.active i {
    color: var(--accent-green);
    filter: drop-shadow(0 0 6px rgba(82, 183, 136, 0.3));
}

.sidebar-menu > li > a:hover i {
    transform: scale(1.12);
}

/* Submenu Styles */
.submenu-icon,
.arrow-icon {
    margin-left: auto;
    font-size: 11px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.submenu-icon.rotated,
.arrow-icon.rotated {
    transform: rotate(180deg);
    opacity: 1;
}

.submenu,
.sub-menu {
    list-style: none;
    background: rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.submenu.active,
.sub-menu.active {
    display: block;
}

.has-submenu.active > .submenu,
.menu-item-has-children.open > .sub-menu {
    max-height: 1000px;
    display: block;
}

.submenu li,
.sub-menu li {
    border-left: 3px solid rgba(82, 183, 136, 0.25);
    margin-left: 22px;
    position: relative;
}

.submenu li:hover,
.sub-menu li:hover {
    border-left-color: var(--accent-green);
}

.submenu li a,
.sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 50px;
    color: #a0aec0;
    font-size: 13px;
    transition: var(--transition-fast);
    position: relative;
}

.submenu li a:before,
.sub-menu li a:before {
    content: '▸';
    position: absolute;
    left: 34px;
    color: #718096;
    transition: var(--transition-fast);
    font-size: 14px;
}

.submenu li a i,
.sub-menu li a i {
    margin-right: 9px;
    font-size: 13px;
    opacity: 0.8;
}

.submenu li a:hover,
.sub-menu li a:hover {
    color: var(--white);
    background: rgba(82, 183, 136, 0.12);
    padding-left: 54px;
}

.submenu li a:hover:before,
.sub-menu li a:hover:before {
    color: var(--accent-green);
    left: 38px;
}

.submenu li a.active,
.sub-menu li a.active {
    color: var(--accent-green);
    background: rgba(82, 183, 136, 0.18);
    border-left: 3px solid var(--accent-green);
    font-weight: 600;
}

.submenu li a.active:before,
.sub-menu li a.active:before {
    color: var(--accent-green);
}

/* Enhanced Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 7px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(82, 183, 136, 0.3);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(82, 183, 136, 0.5);
}

/* ================================================ */
/* MAIN CONTENT */
/* ================================================ */

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--body-bg);
}

/* ================================================ */
/* ENHANCED HEADER */
/* ================================================ */

.header {
    background: var(--white);
    height: var(--header-height);
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    background: var(--light-color);
    color: var(--accent-green);
}

.header-search {
    position: relative;
}

.header-search input {
    padding: 11px 16px 11px 42px;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    width: 340px;
    transition: var(--transition-fast);
    background: var(--light-color);
    color: var(--text-color);
}

.header-search input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.12);
    width: 400px;
}

.header-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.notification-icon {
    position: relative;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.notification-icon:hover {
    background: var(--light-color);
}

.notification-icon i {
    font-size: 21px;
    color: var(--dark-color);
}

.notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--danger-color);
    color: var(--white);
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 12px;
    min-width: 19px;
    text-align: center;
    font-weight: 700;
    animation: gentlePulse 2s infinite;
    box-shadow: 0 2px 8px rgba(224, 122, 95, 0.4);
}

@keyframes gentlePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    padding: 9px 14px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.user-menu:hover {
    background: var(--light-color);
    border-color: var(--accent-green);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), #3d9970);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 3px 12px rgba(82, 183, 136, 0.3);
}

/* ================================================ */
/* CONTENT AREA */
/* ================================================ */

.content {
    padding: 32px;
    flex: 1;
}

.page-header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.page-title {
    font-size: 28px;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 12px;
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 9px;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 12px;
    color: var(--gray-light);
    font-weight: bold;
}

.breadcrumb a {
    color: var(--gray-medium);
}

.breadcrumb a:hover {
    color: var(--accent-green);
}

/* ================================================ */
/* ENHANCED DASHBOARD CARDS */
/* ================================================ */

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cool));
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-green);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.stat-card-icon.primary {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(74, 144, 226, 0.05));
    color: var(--primary-color);
}

.stat-card-icon.success {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.15), rgba(82, 183, 136, 0.05));
    color: var(--success-color);
}

.stat-card-icon.warning {
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.15), rgba(244, 162, 97, 0.05));
    color: var(--warning-color);
}

.stat-card-icon.danger {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.15), rgba(224, 122, 95, 0.05));
    color: var(--danger-color);
}

.stat-card-icon.info {
    background: linear-gradient(135deg, rgba(124, 184, 209, 0.15), rgba(124, 184, 209, 0.05));
    color: var(--info-color);
}

.stat-card-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 9px;
    letter-spacing: -0.5px;
}

.stat-card-label {
    color: var(--gray-medium);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================================ */
/* ENHANCED CARD */
/* ================================================ */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 22px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.card-header {
    padding: 22px 28px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color), var(--white));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: var(--accent-green);
}

.card-body {
    padding: 28px;
}

/* ================================================ */
/* ENHANCED TABLE */
/* ================================================ */

.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

table th {
    background: linear-gradient(135deg, var(--light-color), #f0f4f7);
    padding: 16px 14px;
    text-align: left;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 12px;
    border-bottom: 2px solid var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

table th:first-child {
    border-radius: var(--radius) 0 0 0;
}

table th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

table td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-color);
}

table tbody tr {
    transition: var(--transition-fast);
    background: var(--white);
}

table tbody tr:hover {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.03), rgba(124, 184, 209, 0.03));
    box-shadow: inset 3px 0 0 var(--accent-green);
}

table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius);
}

table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--radius) 0;
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* ================================================ */
/* ENHANCED BADGE */
/* ================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: var(--shadow-sm);
}

.badge-success {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.18), rgba(82, 183, 136, 0.1));
    color: #2d7a5a;
    border: 1px solid rgba(82, 183, 136, 0.3);
}

.badge-warning {
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.18), rgba(244, 162, 97, 0.1));
    color: #b8732a;
    border: 1px solid rgba(244, 162, 97, 0.3);
}

.badge-danger {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.18), rgba(224, 122, 95, 0.1));
    color: #b84d38;
    border: 1px solid rgba(224, 122, 95, 0.3);
}

.badge-info {
    background: linear-gradient(135deg, rgba(124, 184, 209, 0.18), rgba(124, 184, 209, 0.1));
    color: #4a7f9e;
    border: 1px solid rgba(124, 184, 209, 0.3);
}

.badge-primary {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.18), rgba(74, 144, 226, 0.1));
    color: var(--primary-dark);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* ================================================ */
/* ENHANCED ALERT */
/* ================================================ */

.alert {
    padding: 18px 22px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideDown 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.12), rgba(82, 183, 136, 0.05));
    border-left: 4px solid var(--success-color);
    color: #2d7a5a;
}

.alert-success i {
    color: var(--success-color);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.12), rgba(224, 122, 95, 0.05));
    border-left: 4px solid var(--danger-color);
    color: #b84d38;
}

.alert-danger i {
    color: var(--danger-color);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.12), rgba(244, 162, 97, 0.05));
    border-left: 4px solid var(--warning-color);
    color: #b8732a;
}

.alert-warning i {
    color: var(--warning-color);
}

.alert-info {
    background: linear-gradient(135deg, rgba(124, 184, 209, 0.12), rgba(124, 184, 209, 0.05));
    border-left: 4px solid var(--info-color);
    color: #4a7f9e;
}

.alert-info i {
    color: var(--info-color);
}

.alert-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.alert-close:hover {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg);
}

/* ================================================ */
/* ENHANCED MODAL */
/* ================================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 22px 28px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color), var(--white));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.2px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--gray-medium);
    transition: var(--transition-fast);
    padding: 6px;
    line-height: 1;
    border-radius: var(--radius);
}

.modal-close:hover {
    color: var(--danger-color);
    transform: rotate(90deg);
    background: rgba(224, 122, 95, 0.1);
}

.modal-body {
    padding: 28px;
}

.modal-footer {
    padding: 22px 28px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: linear-gradient(135deg, var(--white), var(--light-color));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ================================================ */
/* ENHANCED TOOLTIP */
/* ================================================ */

.custom-tooltip {
    position: fixed;
    background: var(--dark-color);
    color: var(--white);
    padding: 9px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    pointer-events: none;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    display: none;
}

/* ================================================ */
/* LOADING SPINNER */
/* ================================================ */

.spinner {
    border: 4px solid var(--light-color);
    border-top: 4px solid var(--accent-green);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin 1s linear infinite;
    margin: 22px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================================================ */
/* RESPONSIVE DESIGN */
/* ================================================ */

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .header-search input {
        width: 180px;
    }
    
    .header-search input:focus {
        width: 220px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .content {
        padding: 22px 16px;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    table {
        font-size: 12px;
    }
    
    table th,
    table td {
        padding: 12px 10px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
}

/* ================================================ */
/* PRINT STYLES */
/* ================================================ */

@media print {
    .sidebar,
    .header,
    .page-header,
    .btn {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    body {
        background: var(--white);
    }
}

/* ================================================ */
/* UTILITY CLASSES */
/* ================================================ */

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ================================================ */
/* ADDITIONAL FORM COMPONENTS */
/* ================================================ */

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 22px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.form-card:hover {
    border-color: var(--border-color);
}

.section-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-green);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.2px;
}

.section-title i {
    color: var(--accent-green);
    filter: drop-shadow(0 2px 4px rgba(82, 183, 136, 0.2));
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.customer-quick-info {
    background: linear-gradient(135deg, rgba(124, 184, 209, 0.08), rgba(124, 184, 209, 0.03));
    padding: 18px;
    border-radius: var(--radius);
    margin-top: 12px;
    display: none;
    border: 2px solid rgba(124, 184, 209, 0.2);
}

.items-table {
    width: 100%;
    margin-top: 22px;
}

.items-table th {
    background: linear-gradient(135deg, var(--light-color), #f0f4f7);
    padding: 14px 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-green);
}

.items-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.items-table input,
.items-table select {
    width: 100%;
}

.btn-remove-item {
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--danger-color), #d4624a);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-remove-item:hover {
    background: linear-gradient(135deg, #d4624a, #b84d38);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.totals-card {
    background: linear-gradient(135deg, #52b788 0%, #3d9970 50%, #2d7a5a 100%);
    color: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 22px;
    box-shadow: var(--shadow-lg);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
}

.total-row.grand {
    font-size: 26px;
    font-weight: 700;
    padding-top: 18px;
    border-top: 2px solid rgba(255,255,255,0.4);
    margin-top: 12px;
}

.quick-add-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.input-with-button {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.input-with-button .form-control {
    flex: 1;
}

.input-with-button .btn {
    white-space: nowrap;
}

/* ================================================ */
/* SELECT2 CUSTOMIZATION */
/* ================================================ */

.select2-container--default .select2-selection--single {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    height: 46px;
    padding: 7px 14px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    color: var(--text-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

.select2-dropdown {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--accent-green);
}

/* ================================================ */
/* NOTIFICATION SYSTEM */
/* ================================================ */

.notification-list {
    max-height: 420px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
    color: var(--text-color);
}

.notification-item:hover {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.05), rgba(124, 184, 209, 0.05));
}

.notification-item.unread {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.08), rgba(82, 183, 136, 0.03));
    border-left: 3px solid var(--accent-green);
}

.notification-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), #3d9970);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(82, 183, 136, 0.3);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.notification-message {
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.notification-time {
    font-size: 11px;
    color: var(--gray-light);
    font-weight: 500;
}

.no-notifications {
    text-align: center;
    padding: 45px 22px;
    color: var(--gray-medium);
}

.no-notifications i {
    font-size: 52px;
    margin-bottom: 12px;
    opacity: 0.25;
}

/* ================================================ */
/* ENHANCED SCROLLBAR */
/* ================================================ */

::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-green), #3d9970);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3d9970, #2d7a5a);
}

/* ================================================ */
/* LOADING STATE */
/* ================================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    text-align: center;
}

.loading-spinner .spinner {
    margin: 0 auto 18px;
}

/* ================================================ */
/* EMPTY STATE */
/* ================================================ */

.empty-state {
    text-align: center;
    padding: 65px 22px;
    color: var(--gray-medium);
}

.empty-state i {
    font-size: 70px;
    margin-bottom: 22px;
    opacity: 0.25;
    color: var(--gray-light);
}

.empty-state h3 {
    font-size: 21px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.empty-state p {
    font-size: 14px;
    margin-bottom: 22px;
}

/* ================================================ */
/* STATUS INDICATORS */
/* ================================================ */

.status-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 7px;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

.status-dot.success {
    background: var(--success-color);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

.status-dot.warning {
    background: var(--warning-color);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
}

.status-dot.danger {
    background: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}

.status-dot.info {
    background: var(--info-color);
    box-shadow: 0 0 0 3px rgba(124, 184, 209, 0.2);
}

/* ================================================ */
/* PROGRESS BAR */
/* ================================================ */

.progress {
    height: 10px;
    background: var(--light-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), #3d9970);
    transition: width 0.4s ease;
    border-radius: 6px;
}

.progress-bar.success {
    background: linear-gradient(90deg, var(--success-color), #3d9970);
}

.progress-bar.warning {
    background: linear-gradient(90deg, var(--warning-color), #e88a48);
}

.progress-bar.danger {
    background: linear-gradient(90deg, var(--danger-color), #d4624a);
}

/* ================================================ */
/* TABS */
/* ================================================ */

.tabs {
    display: flex;
    border-bottom: 3px solid var(--border-color);
    margin-bottom: 22px;
    gap: 6px;
}

.tab {
    padding: 14px 26px;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--gray-medium);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
}

.tab:hover {
    color: var(--accent-green);
    background: rgba(82, 183, 136, 0.05);
}

.tab.active {
    color: var(--accent-green);
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.08), rgba(82, 183, 136, 0.03));
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), #3d9970);
    border-radius: 3px 3px 0 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================================================ */
/* FILE UPLOAD */
/* ================================================ */

.file-upload {
    border: 3px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.02), rgba(124, 184, 209, 0.02));
}

.file-upload:hover {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.05), rgba(124, 184, 209, 0.05));
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload i {
    font-size: 52px;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.file-upload p {
    color: var(--gray-medium);
    font-size: 14px;
    font-weight: 500;
}

/* ================================================ */
/* PAGINATION */
/* ================================================ */

.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 22px;
}

.pagination button,
.pagination a {
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    font-weight: 600;
}

.pagination button:hover,
.pagination a:hover {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pagination button.active,
.pagination a.active {
    background: linear-gradient(135deg, var(--accent-green), #3d9970);
    color: white;
    border-color: var(--accent-green);
    box-shadow: var(--shadow);
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ================================================ */
/* DROPDOWN MENU */
/* ================================================ */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    z-index: 1000;
    display: none;
    margin-top: 6px;
}

.dropdown-menu.show {
    display: block;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.08), rgba(82, 183, 136, 0.03));
    color: var(--accent-green);
    padding-left: 22px;
}

.dropdown-menu a i {
    margin-right: 10px;
    width: 18px;
    color: var(--accent-green);
}

/* ================================================ */
/* ICON ENHANCEMENTS */
/* ================================================ */

.icon-green {
    color: var(--success-color) !important;
}

.icon-blue {
    color: var(--primary-color) !important;
}

.icon-red {
    color: var(--danger-color) !important;
}

.icon-yellow {
    color: var(--warning-color) !important;
}

.icon-gray {
    color: var(--gray-medium) !important;
}

.icon-bg-green {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.12), rgba(82, 183, 136, 0.05));
    color: var(--success-color);
    padding: 12px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.icon-bg-blue {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12), rgba(74, 144, 226, 0.05));
    color: var(--primary-color);
    padding: 12px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.icon-bg-red {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.12), rgba(224, 122, 95, 0.05));
    color: var(--danger-color);
    padding: 12px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.icon-bg-yellow {
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.12), rgba(244, 162, 97, 0.05));
    color: var(--warning-color);
    padding: 12px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.stat-card-icon.green {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.15), rgba(82, 183, 136, 0.05));
    color: var(--success-color);
}

.sidebar-menu > li > a.active i {
    color: var(--accent-green);
}

.btn-success i {
    color: white;
}

.btn-primary i {
    color: white;
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.feature-icon.green {
    background: linear-gradient(135deg, var(--success-color), #3d9970);
    color: white;
}

.feature-icon.blue {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.quick-action-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--success-color), #3d9970);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.quick-action-icon:hover {
    transform: scale(1.12);
    box-shadow: var(--shadow-lg);
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.status-icon.success {
    background: var(--success-color);
    color: white;
    box-shadow: 0 2px 8px rgba(82, 183, 136, 0.3);
}

.status-icon.warning {
    background: var(--warning-color);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 162, 97, 0.3);
}

.status-icon.danger {
    background: var(--danger-color);
    color: white;
    box-shadow: 0 2px 8px rgba(224, 122, 95, 0.3);
}

.card-header i {
    color: var(--accent-green);
    margin-right: 9px;
}

.alert-success i {
    color: var(--success-color);
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    font-size: 17px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-left: 42px;
}

.nav-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.12), rgba(82, 183, 136, 0.05));
    color: var(--success-color);
    margin-right: 14px;
    box-shadow: var(--shadow-sm);
}

/* ================================================ */
/* DARK MODE SUPPORT (Optional) */
/* ================================================ */

@media (prefers-color-scheme: dark) {
    /* Add dark mode variables if needed */
    /* This can be toggled based on user preference */
}

/* ================================================ */
/* ACCESSIBILITY ENHANCEMENTS */
/* ================================================ */

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--accent-green);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================ */
/* END OF EYE-PROTECTED STYLESHEET */
/* ================================================ */