:root {
            --primary: #0b2545;
            --primary-dark: #061527;
            --accent: #c59b27;
            --accent-light: #f4e8c1;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --danger: #dc2626;
            --success: #16a34a;
            --shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
            --border-radius: 12px;
            --transition: all 0.25s ease-in-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-dark);
            color: var(--white);
            padding: 8px 5%;
            font-size: 0.82rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--accent);
        }

        /* Header Navigation */
        header {
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 1.2rem;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--primary);
            cursor: pointer;
        }

        .brand-logo i {
            font-size: 2.2rem;
            color: var(--accent);
        }

        .brand-text h1 {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .brand-text p {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-family: 'Inter', sans-serif;
        }

        .nav-links {
            display: flex;
            gap: 0.3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.82rem;
            transition: var(--transition);
            padding: 7px 10px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
            background: var(--bg-light);
            font-weight: 600;
        }

        .btn-nav-login {
            background: var(--primary);
            color: var(--white) !important;
        }
        .btn-nav-login:hover {
            background: #133863 !important;
        }

        .btn-nav-admin {
            background: var(--accent);
            color: var(--primary-dark) !important;
            font-weight: 600 !important;
        }
        .btn-nav-admin:hover {
            background: #d4af37 !important;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* PAGE VIEWS */
        main {
            flex: 1;
        }

        .page-view {
            display: none;
            animation: fadeIn 0.3s ease-in-out;
        }

        .page-view.active-page {
            display: block;
        }

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

        /* Container & Grid Setup */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.5rem 1.2rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 2.2rem;
            background: var(--white);
            padding: 2.2rem 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-bottom: 3px solid var(--accent);
        }

        .page-header h2 {
            font-size: 2.1rem;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }

        .page-header p {
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto;
            font-size: 0.92rem;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.8rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
        }

        .card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }

        /* Faculty Profile Card Styling */
        .faculty-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .faculty-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
        }

        .faculty-card.hod::before {
            background: var(--accent);
        }

        .faculty-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            border: 3px solid var(--accent-light);
        }

        .faculty-designation {
            display: inline-block;
            background: var(--bg-light);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            margin: 6px 0 12px;
            border: 1px solid #cbd5e1;
        }

        /* Buttons & Forms */
        .btn {
            padding: 10px 18px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: none;
            font-size: 0.85rem;
        }

        .btn-primary { background: var(--accent); color: var(--primary-dark); }
        .btn-primary:hover { background: #d4af37; }

        .btn-dark { background: var(--primary); color: var(--white); }
        .btn-dark:hover { background: var(--primary-dark); }

        .btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
        .btn-outline:hover { background: var(--primary); color: var(--white); }

        .form-group { margin-bottom: 1.2rem; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.88rem; }
        .form-control { width: 100%; padding: 11px 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-family: inherit; font-size: 0.92rem; }

        /* Tables & Badges */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .data-table th, .data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.88rem;
        }

        .data-table th { background: var(--primary); color: var(--white); font-weight: 600; }

        .badge { padding: 4px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; }
        .badge-success { background: #dcfce7; color: #15803d; }
        .badge-pending { background: #fef9c3; color: #a16207; }

        /* Access Guard Cards */
        .access-guard {
            text-align: center;
            background: var(--white);
            padding: 3.5rem 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 2px dashed #cbd5e1;
            max-width: 600px;
            margin: 2rem auto;
        }
        .access-guard i { font-size: 3.5rem; color: var(--danger); margin-bottom: 1rem; }

        .alert { padding: 12px 16px; border-radius: 6px; font-size: 0.88rem; margin-top: 1rem; display: none; }
        .alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
        .alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 3.5rem 1.5rem 1.8rem;
            margin-top: auto;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-col h4 { color: var(--accent); font-size: 1.1rem; margin-bottom: 1.2rem; }
        .footer-col p, .footer-col li { color: #94a3b8; font-size: 0.85rem; margin-bottom: 0.8rem; }
        .footer-col ul { list-style: none; }
        .footer-col a { color: #94a3b8; text-decoration: none; cursor: pointer; }
        .footer-col a:hover { color: var(--white); }

        .copyright { text-align: center; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.1); color: #64748b; font-size: 0.82rem; }

        @media (max-width: 1100px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 1.2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
        }

        /* ===== Enhanced contemporary interface layer ===== */
        :root {
            --primary: #0a2b4b;
            --primary-dark: #071c35;
            --accent: #d7aa35;
            --accent-light: #fff2cc;
            --teal: #19b5a5;
            --ink: #102a43;
            --surface: #ffffff;
            --surface-soft: #f5f8fc;
            --line: #dce6f0;
            --shadow: 0 18px 45px -24px rgba(7, 28, 53, 0.28);
            --border-radius: 18px;
        }

        html { scroll-behavior: smooth; }
        body {
            background:
                radial-gradient(circle at 6% 10%, rgba(25, 181, 165, 0.09), transparent 28rem),
                radial-gradient(circle at 95% 22%, rgba(215, 170, 53, 0.10), transparent 28rem),
                #f6f8fc;
            letter-spacing: 0.005em;
        }
        body::selection { background: rgba(215, 170, 53, 0.36); color: var(--primary-dark); }
        .skip-link {
            position: fixed;
            left: 1rem;
            top: -5rem;
            z-index: 3000;
            background: var(--accent);
            color: var(--primary-dark);
            font-weight: 800;
            padding: 0.72rem 1rem;
            border-radius: 0 0 10px 10px;
            text-decoration: none;
            transition: top 0.2s ease;
        }
        .skip-link:focus { top: 0; }
        :focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

        .top-bar {
            min-height: 38px;
            padding: 0.5rem clamp(1rem, 5vw, 5rem);
            background: linear-gradient(100deg, #071c35, #0d385d 62%, #0a2b4b);
            border-bottom: 1px solid rgba(215, 170, 53, 0.7);
        }
        .top-bar span { display: inline-flex; align-items: center; gap: 0.45rem; }
        .top-bar i { color: var(--accent); }
        header {
            background: rgba(255, 255, 255, 0.94);
            border-bottom: 1px solid rgba(220, 230, 240, 0.8);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 8px 30px rgba(7, 28, 53, 0.06);
        }
        .nav-container { max-width: 1380px; padding: 0.75rem clamp(1rem, 3vw, 2rem); }
        .brand-logo { gap: 0.8rem; border-radius: 12px; }
        .brand-logo:hover { opacity: 0.84; }
        .brand-logo i {
            width: 43px;
            height: 43px;
            display: inline-grid;
            place-items: center;
            border-radius: 13px;
            font-size: 1.35rem;
            color: #fff8e5;
            background: linear-gradient(135deg, var(--primary), #155880);
            box-shadow: 0 8px 18px rgba(10, 43, 75, 0.22);
        }
        .brand-text h1 { font-size: clamp(0.94rem, 1.5vw, 1.12rem); letter-spacing: -0.025em; }
        .brand-text p { font-size: 0.72rem; letter-spacing: 0.02em; }
        .nav-links { gap: 0.12rem; }
        .nav-links a {
            position: relative;
            min-height: 37px;
            color: #29465e;
            border: 1px solid transparent;
            border-radius: 9px;
        }
        .nav-links a:not(.btn-nav-login):not(.btn-nav-admin)::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            border-radius: 99px;
            background: var(--teal);
            transform: translateX(-50%);
            transition: width 0.22s ease;
        }
        .nav-links a:not(.btn-nav-login):not(.btn-nav-admin):hover::after,
        .nav-links a.active:not(.btn-nav-login):not(.btn-nav-admin)::after { width: calc(100% - 20px); }
        .nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(10, 43, 75, 0.055); }
        .btn-nav-login, .btn-nav-admin { box-shadow: 0 5px 13px rgba(7, 28, 53, 0.11); }
        .btn-nav-login { background: linear-gradient(135deg, var(--primary), #155880); }
        .btn-nav-admin { background: linear-gradient(135deg, #e5ba4a, var(--accent)); }
        .mobile-toggle {
            width: 44px;
            height: 44px;
            display: none;
            place-items: center;
            background: var(--surface-soft);
            border: 1px solid var(--line);
            border-radius: 12px;
            color: var(--primary);
        }

        .container { max-width: 1280px; padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem); }
        .page-view { min-height: 58vh; }
        .page-header {
            position: relative;
            overflow: hidden;
            max-width: 980px;
            margin: 0 auto clamp(2rem, 4vw, 3rem);
            padding: clamp(1.8rem, 4vw, 3rem) clamp(1rem, 4vw, 3rem);
            border: 1px solid rgba(220, 230, 240, 0.92);
            border-bottom: 4px solid var(--accent);
            box-shadow: var(--shadow);
        }
        .page-header::before, .page-header::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        .page-header::before { width: 12rem; height: 12rem; right: -5rem; top: -8rem; background: rgba(25, 181, 165, 0.08); }
        .page-header::after { width: 6rem; height: 6rem; left: -2rem; bottom: -4rem; background: rgba(215, 170, 53, 0.10); }
        .page-header h2 { position: relative; font-size: clamp(1.7rem, 4vw, 2.45rem); letter-spacing: -0.035em; }
        .page-header p { position: relative; max-width: 720px; font-size: 0.98rem; }
        .grid-2 { gap: clamp(1rem, 3vw, 1.6rem); }
        .grid-3 { gap: clamp(1rem, 3vw, 1.5rem); }
        .card, .faculty-card {
            background: rgba(255, 255, 255, 0.97);
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
        }
        .card { padding: clamp(1.25rem, 3vw, 1.8rem); }
        .card:hover, .faculty-card:hover {
            transform: translateY(-5px);
            border-color: rgba(25, 181, 165, 0.4);
            box-shadow: 0 24px 48px -26px rgba(7, 28, 53, 0.38);
        }
        .faculty-card { padding: clamp(1.3rem, 3vw, 1.8rem); }
        .faculty-card::before { height: 5px; background: linear-gradient(90deg, var(--primary), var(--teal)); }
        .faculty-card.hod::before { background: linear-gradient(90deg, var(--accent), #f4d478); }
        .faculty-avatar {
            background: linear-gradient(145deg, #e5f4f2, #f7f4e8);
            border-color: rgba(215, 170, 53, 0.5);
            box-shadow: inset 0 0 0 5px rgba(255,255,255,0.6);
        }
        .faculty-profile-card { cursor: pointer; }
        .faculty-profile-card:focus-visible { outline-offset: 5px; }
        .profile-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            width: fit-content;
            margin-top: 1.35rem;
            padding: 0.55rem 0.8rem;
            border-radius: 9px;
            color: var(--primary);
            background: #eff8f7;
            font-size: 0.82rem;
            font-weight: 800;
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .faculty-profile-card:hover .profile-cta { background: #dff4f0; transform: translateX(4px); }
        .faculty-profile-page .profile-intro {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: clamp(1.3rem, 4vw, 2.5rem);
            align-items: center;
            padding: clamp(1.4rem, 4vw, 2.5rem);
            background: linear-gradient(135deg, #0a2b4b, #11557a);
            color: #fff;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .faculty-profile-page .profile-intro .faculty-avatar {
            width: 112px;
            height: 112px;
            margin: 0;
            background: rgba(255,255,255,0.12);
            color: var(--accent-light);
            border-color: var(--accent);
        }
        .faculty-profile-page .profile-intro h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
        .faculty-profile-page .profile-intro p { color: #d8e7f2; }
        .faculty-profile-page .profile-intro .faculty-designation { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.28); }
        .profile-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
        .profile-detail-grid .card { min-height: 160px; }
        .profile-detail-grid .card > i { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; margin-bottom: 0.9rem; color: var(--primary); background: #eff8f7; }
        .profile-detail-grid p { color: var(--text-muted); font-size: 0.9rem; }
        .profile-return { margin-bottom: 1.4rem; }
        .faculty-designation { background: #eef8f7; border-color: #bee8e1; }
        .btn {
            min-height: 42px;
            justify-content: center;
            border-radius: 10px;
            box-shadow: 0 7px 14px rgba(7, 28, 53, 0.09);
        }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 19px rgba(7, 28, 53, 0.15); }
        .btn-primary { background: linear-gradient(135deg, #e8c459, var(--accent)); }
        .btn-dark { background: linear-gradient(135deg, var(--primary), #155880); }
        .btn-outline { border-color: currentColor; }
        .form-control {
            min-height: 44px;
            border-radius: 9px;
            border-color: #cbd9e7;
            background: rgba(255, 255, 255, 0.92);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .form-control:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(25, 181, 165, 0.12); }
        .badge { display: inline-flex; align-items: center; min-height: 25px; border-radius: 999px; }
        .data-table { border: 1px solid var(--line); box-shadow: none; }
        .data-table th { background: linear-gradient(135deg, var(--primary), #155880); }
        .data-table tr:nth-child(even) { background: #f8fbfd; }
        .data-table tbody tr { transition: background 0.18s ease; }
        .data-table tbody tr:hover { background: #edf8f7; }
        .access-guard { border-color: rgba(25, 181, 165, 0.4); background: rgba(255, 255, 255, 0.94); }
        .access-guard i { color: var(--primary); }
        #page-home > section {
            position: relative;
            isolation: isolate;
            min-height: min(670px, calc(100vh - 115px));
            display: grid;
            place-items: center;
            padding: clamp(5rem, 11vw, 8rem) 1.5rem !important;
            overflow: hidden;
        }
        #page-home > section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(115deg, rgba(7, 28, 53, 0.94), rgba(10, 43, 75, 0.77)),
                radial-gradient(circle at 82% 25%, rgba(25,181,165,0.27), transparent 20rem);
        }
        #page-home > section > div { position: relative; }
        #page-home > section h2 { font-size: clamp(2.25rem, 6vw, 4.3rem) !important; letter-spacing: -0.045em; text-shadow: 0 3px 24px rgba(0,0,0,0.2); }
        #page-home > section p { max-width: 720px; margin-left: auto; margin-right: auto; font-size: clamp(1rem, 2vw, 1.14rem) !important; }
        #page-home > section .btn-outline:hover { background: #fff; color: var(--primary) !important; }
        #page-home .grid-3 .card { overflow: hidden; position: relative; }
        #page-home .grid-3 .card::after {
            content: '';
            position: absolute;
            left: 18%; right: 18%; bottom: 0;
            height: 4px;
            border-radius: 6px 6px 0 0;
            background: linear-gradient(90deg, var(--teal), var(--accent));
        }
        #page-facilities .card > div:first-child {
            background: linear-gradient(145deg, #eaf8f6, #f7f3e6) !important;
            border: 1px solid rgba(25, 181, 165, 0.16);
        }
        footer {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
            background: linear-gradient(120deg, #06182e, #0a2b4b);
        }
        footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 82% 15%, rgba(25, 181, 165, 0.16), transparent 26rem);
            pointer-events: none;
        }
        .footer-grid, .copyright { position: relative; }
        .footer-col a { display: inline-block; padding: 0.12rem 0; }
        .footer-col a:hover { color: var(--accent-light); transform: translateX(3px); }

        @media (max-width: 1100px) {
            .mobile-toggle { display: inline-grid; }
            .nav-links {
                gap: 0.35rem;
                max-height: calc(100vh - 130px);
                overflow-y: auto;
                padding: 1rem clamp(1rem, 4vw, 2rem);
                border-top: 1px solid var(--line);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(18px);
            }
            .nav-links a { width: 100%; padding: 0.75rem 0.85rem; }
            .nav-links .btn-nav-login, .nav-links .btn-nav-admin { justify-content: center; }
        }
        @media (max-width: 720px) {
            .top-bar { align-items: flex-start; flex-direction: column; gap: 0.25rem; font-size: 0.74rem; }
            .nav-container { min-height: 70px; }
            .brand-logo { max-width: calc(100% - 56px); }
            .brand-text h1 { font-size: 0.89rem; }
            .brand-text p { font-size: 0.65rem; }
            .brand-logo i { width: 38px; height: 38px; font-size: 1.15rem; }
            .page-header { text-align: left; }
            .page-header h2 { font-size: 1.7rem; }
            #page-home > section { min-height: 560px; }
            #page-home > section h2 { font-size: clamp(2rem, 10vw, 3rem) !important; }
            #page-home > section > div > div:last-child { width: 100%; }
            #page-home > section .btn { width: min(100%, 340px); }
            .grid-2, .grid-3 { grid-template-columns: minmax(0, 1fr); }
            .faculty-avatar { width: 76px; height: 76px; font-size: 2rem; }
            .faculty-profile-page .profile-intro { grid-template-columns: 1fr; text-align: center; }
            .faculty-profile-page .profile-intro .faculty-avatar { margin: 0 auto; }
            .profile-detail-grid { grid-template-columns: 1fr; }
            .data-table th, .data-table td { padding: 0.75rem 0.8rem; white-space: normal; }
            footer { padding: 2.7rem 1.25rem 1.5rem; }
            .footer-grid { gap: 1.65rem; }
        }
        @media (max-width: 420px) {
            .container { padding-left: 0.85rem; padding-right: 0.85rem; }
            .card, .faculty-card { padding: 1.15rem; }
            .page-header { padding: 1.45rem 1.1rem; }
            #page-home > section { padding-left: 1rem !important; padding-right: 1rem !important; }
            .top-bar { padding-left: 0.85rem; padding-right: 0.85rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
        }
