/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-pink: #ff5f9f;
    --brand-pink-dark: #d92f78;
    --brand-teal: #2ad4d6;
    --brand-teal-dark: #0fa5a7;
    --brand-navy: #070f26;
    --brand-indigo: #13284b;
    --brand-text: #f5f8ff;
    --brand-muted: #c0d3e6;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(circle at top left, rgba(21, 211, 213, 0.22), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255, 44, 146, 0.2), transparent 60%),
                linear-gradient(140deg, var(--brand-navy) 0%, var(--brand-indigo) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.main-title {
    font-size: clamp(2rem, 2.6vw + 1.4rem, 2.75rem);
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.15;
}

.brand-logo {
    height: clamp(3rem, 1.6em + 1vw, 4.1rem);
    width: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.1vw, 18px);
}

.brand-name {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3em;
    font-size: clamp(1.95rem, 2.4vw + 1rem, 2.55rem);
    color: var(--brand-teal);
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: none;
}

.brand-name__chem {
    color: var(--brand-pink);
}

.brand-name__aurum {
    color: var(--brand-teal);
}

@media (max-width: 640px) {
    .brand-name {
        font-size: clamp(1.6rem, 6vw, 1.85rem);
    }

    .brand-logo {
        height: clamp(2.4rem, 1.4em + 1vw, 3.2rem);
    }
}

.main-title i {
    color: var(--brand-teal);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(21, 211, 213, 0.8); }
    to { text-shadow: 0 0 20px rgba(21, 211, 213, 0.8), 0 0 30px rgba(255, 44, 146, 0.65); }
}

.tagline {
    font-size: 1.2rem;
    color: var(--brand-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.login-buttons {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.login-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 170px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover::before {
    left: 100%;
}

.teacher-btn {
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
    color: var(--brand-text);
}

.student-btn {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
    color: var(--brand-text);
}

.login-btn:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.login-btn i {
    font-size: 2.8rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.login-btn:hover i {
    transform: scale(1.2);
}

.login-btn span {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.75px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}

.footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer a {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: underline;
}

.footer a:hover,
.footer a:focus,
.footer a:active,
.footer a:visited {
    color: #ffffff;
    text-decoration: underline;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.periodic-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(24, 211, 213, 0.08);
    border: 2px solid rgba(255, 44, 146, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-text);
    animation: float 6s ease-in-out infinite;
}

.periodic-element:nth-child(2) { animation-delay: -1s; }
.periodic-element:nth-child(3) { animation-delay: -2s; }
.periodic-element:nth-child(4) { animation-delay: -3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.beaker {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 20px 20px;
    animation: float 4s ease-in-out infinite;
}

.beaker-1 {
    top: 30%;
    right: 20%;
    animation-delay: -1s;
}

.beaker-2 {
    bottom: 25%;
    left: 15%;
    animation-delay: -2s;
}

.molecule {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

.molecule-1 {
    top: 40%;
    left: 10%;
    animation-delay: -1s;
}

.molecule-2 {
    bottom: 40%;
    right: 10%;
    animation-delay: -3s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .tagline {
        font-size: 1.15rem;
    }
    
    .login-buttons {
        flex-direction: column;
        gap: 24px;
    }

    .login-btn {
        width: 220px;
        height: 150px;
    }

    .login-btn i {
        font-size: 2.3rem;
    }

    .login-btn span {
        font-size: 1.1rem;
    }
    
    .periodic-element {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .beaker {
        width: 30px;
        height: 45px;
    }
    
    .molecule {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.05rem;
    }
    
    .login-btn {
        width: 220px;
        height: 160px;
    }
    
    .login-btn i {
        font-size: 2rem;
    }
    
    .login-btn span {
        font-size: 1.1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hover Effects for Touch Devices */
@media (hover: none) {
    .login-btn:hover {
        transform: none;
    }

    .login-btn:active {
        transform: scale(0.95);
    }
}

/* -------------------------------------------------------------- */
/* Global Layout Enhancements                                     */
/* -------------------------------------------------------------- */

body {
    line-height: 1.6;
}

.container {
    width: min(100%, 1100px);
    padding: clamp(16px, 5vw, 40px);
}

.header {
    margin-bottom: clamp(40px, 8vw, 80px);
}

.main-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    gap: clamp(10px, 3vw, 18px);
}

.tagline {
    font-size: clamp(1.05rem, 2.6vw, 1.4rem);
}

.main-content {
    padding: clamp(32px, 6vw, 60px) 0;
}

body:not(.login-page) .login-buttons {
    gap: clamp(20px, 6vw, 48px);
}

body:not(.login-page) .login-btn {
    width: clamp(220px, 42vw, 280px);
    height: clamp(160px, 28vw, 200px);
    padding: clamp(18px, 4vw, 24px);
}

body:not(.login-page) .login-btn span {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.footer {
    padding: clamp(24px, 6vw, 40px) 0;
}

@media (max-width: 768px) {
    .container {
        padding: clamp(16px, 4vw, 28px);
    }

    .background-elements {
        opacity: 0.35;
    }
}

@media (max-width: 560px) {
    .main-content {
        padding: 28px 0;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

/* -------------------------------------------------------------- */
/* Login Pages                                                     */
/* -------------------------------------------------------------- */

body.login-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.login-page .container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 6vw, 48px);
}

body.login-page .login-container {
    width: min(100%, 420px);
    margin: 0 auto;
    padding: clamp(24px, 6vw, 40px);
    border-radius: 20px;
}

body.login-page .login-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(1.6rem, 4vw, 2rem);
    text-align: center;
}

body.login-page .login-container .login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

body.login-page .login-container .login-btn i {
    font-size: 1.1rem;
}

body.login-page .form-group input,
body.login-page .form-group select {
    font-size: 1rem;
    padding: 12px 14px;
}

body.login-page .alert {
    font-size: 0.95rem;
}

body.login-page .back-link {
    margin-top: clamp(16px, 3vw, 24px);
    font-size: 0.95rem;
}

@media (max-width: 540px) {
    body.login-page .login-container {
        padding: 20px;
        border-radius: 18px;
    }

    body.login-page .login-title {
        font-size: 1.5rem;
    }
}

/* -------------------------------------------------------------- */
/* Dashboard Pages                                                 */
/* -------------------------------------------------------------- */

body.dashboard .container {
    padding: clamp(16px, 4vw, 40px);
}

body.dashboard .dashboard-container {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 36px);
    border-radius: 26px;
    background: rgba(7, 18, 36, 0.92);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(21, 211, 213, 0.25);
    color: var(--brand-text);
}

body.dashboard .dashboard-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(16px, 4vw, 24px);
    padding-bottom: clamp(12px, 3vw, 20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.dashboard .menu-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.dashboard .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(44px, 6vw, 52px);
    height: clamp(44px, 6vw, 52px);
    border-radius: 16px;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    border: none;
    color: var(--brand-text);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-teal));
}

body.dashboard .menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(21, 211, 213, 0.35);
}

body.dashboard .menu-toggle:focus-visible {
    outline: 3px solid rgba(21, 211, 213, 0.65);
    outline-offset: 3px;
}

body.dashboard .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: clamp(240px, 70vw, 300px);
    max-width: calc(100vw - 48px);
    background: rgba(6, 15, 32, 0.96);
    border-radius: 18px;
    border: 1px solid rgba(21, 211, 213, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    max-height: min(75vh, 420px);
    overflow-y: auto;
    z-index: 1000;
}

body.dashboard .dropdown-menu.show {
    display: block;
}

body.dashboard .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 22px);
    color: var(--brand-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 0.95rem;
}

body.dashboard .menu-item:last-child {
    border-bottom: none;
}

body.dashboard .menu-item:hover,
body.dashboard .menu-item:focus-visible {
    background: rgba(255, 44, 146, 0.12);
}

body.teacher-dashboard {
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
}

body.teacher-dashboard .container {
    background: transparent;
}

body.teacher-dashboard .dashboard-container {
    background: #ffffff;
    color: #000000;
    border: 1px solid #d9d9d9;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

body.teacher-dashboard .dashboard-header {
    border-bottom: 1px solid #e5e5e5;
}

body.teacher-dashboard .menu-toggle {
    background: #000000;
    color: #ffffff;
    box-shadow: none;
    border: 1px solid #000000;
}

body.teacher-dashboard .menu-toggle:hover {
    box-shadow: none;
    background: #1a1a1a;
}

body.teacher-dashboard .menu-toggle:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 2px;
}

body.teacher-dashboard .menu-toggle:active {
    background: #0d0d0d;
}

body.teacher-dashboard .dropdown-menu {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

body.teacher-dashboard .menu-item {
    color: #000000;
    border-bottom: 1px solid #ededed;
}

body.teacher-dashboard .menu-item i {
    color: #000000;
}

body.teacher-dashboard .menu-item:hover {
    background: #f5f5f5;
    color: #000000;
    text-decoration: underline;
}

body.teacher-dashboard .menu-item:focus-visible {
    background: #f0f0f0;
    color: #000000;
    text-decoration: underline;
    outline: 2px solid #000000;
    outline-offset: 2px;
}

body.teacher-dashboard .menu-item:hover i,
body.teacher-dashboard .menu-item:focus-visible i {
    color: #000000;
}

body.teacher-dashboard .welcome-message,
body.teacher-dashboard .welcome-title,
body.teacher-dashboard .welcome-subtitle,
body.teacher-dashboard .stat-number,
body.teacher-dashboard .stat-label {
    color: #000000;
}

body.teacher-dashboard .welcome-page {
    color: #000000;
}

body.teacher-dashboard .quick-stats {
    gap: clamp(16px, 4vw, 24px);
}

body.teacher-dashboard .stat-card {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    color: #000000;
    box-shadow: none;
}

body.teacher-dashboard .page-title {
    color: #000000;
}

body.teacher-dashboard .section {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    color: #000000;
}

body.teacher-dashboard .form-group input,
body.teacher-dashboard .form-group select,
body.teacher-dashboard .form-group textarea {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

body.teacher-dashboard .form-group input:focus,
body.teacher-dashboard .form-group select:focus,
body.teacher-dashboard .form-group textarea:focus {
    outline: 2px solid #000000;
    outline-offset: 1px;
}

body.teacher-dashboard .btn {
    background: #000000;
    color: #ffffff;
    box-shadow: none;
    border: 1px solid #000000;
}

body.teacher-dashboard .btn:hover {
    background: #1a1a1a;
    box-shadow: none;
}

body.teacher-dashboard .btn:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 2px;
}

body.teacher-dashboard .btn:active {
    background: #0d0d0d;
}

body.teacher-dashboard .table th {
    background: #f5f5f5;
    color: #000000;
}

body.teacher-dashboard .table td {
    color: #000000;
}

body.teacher-dashboard .table tr:hover {
    background: #f0f0f0;
}

body.teacher-dashboard .muted-text {
    color: #4d4d4d;
}

body.teacher-dashboard .background-elements {
    display: none;
}

body.teacher-dashboard a {
    color: #000000;
}

body.teacher-dashboard a:hover,
body.teacher-dashboard a:focus-visible {
    text-decoration: underline;
}

body.dashboard .welcome-section {
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 18px);
    flex: 1 1 320px;
}

body.dashboard .welcome-message {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin: 0;
    color: var(--brand-text);
}

body.dashboard .welcome-page {
    text-align: left;
    padding: clamp(40px, 8vw, 60px) clamp(20px, 4vw, 36px);
    color: var(--brand-text);
}

body.dashboard .quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 4vw, 24px);
}

body.dashboard .stat-card {
    padding: clamp(22px, 4vw, 32px);
    border-radius: 20px;
    text-align: center;
    color: var(--brand-text);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
    background: linear-gradient(145deg, rgba(255, 44, 146, 0.85), rgba(21, 211, 213, 0.85));
}

body.dashboard .stat-number {
    font-size: clamp(2.1rem, 5vw, 2.6rem);
    font-weight: 700;
}

body.dashboard .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

body.dashboard .page-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.6rem, 4vw, 2rem);
    color: var(--brand-text);
    margin-bottom: clamp(20px, 4vw, 32px);
}

body.dashboard .section {
    padding: clamp(20px, 4vw, 30px);
    border-radius: 18px;
    background: rgba(9, 22, 44, 0.9);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: clamp(20px, 4vw, 32px);
    overflow-x: auto;
}

body.dashboard .section::-webkit-scrollbar {
    height: 6px;
}

body.dashboard .section::-webkit-scrollbar-thumb {
    background: rgba(255, 44, 146, 0.35);
    border-radius: 999px;
}

body.dashboard .form-row,
body.dashboard .form-row-3,
body.dashboard .form-row-4 {
    display: grid;
    gap: clamp(12px, 3vw, 20px);
    align-items: end;
}

body.dashboard .form-row {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.dashboard .form-row-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

body.dashboard .form-row-4 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

body.dashboard .filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 3vw, 20px);
}

body.dashboard .form-group input,
body.dashboard .form-group select,
body.dashboard .form-group textarea {
    font-size: 1rem;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-text);
}

body.dashboard .form-group input::placeholder,
body.dashboard .form-group textarea::placeholder {
    color: rgba(247, 251, 255, 0.6);
}

body.dashboard .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-teal));
    border: none;
    color: var(--brand-text);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

body.dashboard .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(21, 211, 213, 0.35);
}

body.dashboard .btn-sm {
    padding: 6px 12px;
    font-size: 0.9rem;
}

body.dashboard .icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body.dashboard .alert {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

body.dashboard .table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

body.dashboard .table th,
body.dashboard .table td {
    padding: clamp(10px, 2.5vw, 14px);
    text-align: left;
}

body.dashboard .table th {
    background: rgba(15, 33, 60, 0.95);
    font-weight: 600;
    color: var(--brand-text);
}

body.dashboard .table tr:hover {
    background: rgba(255, 44, 146, 0.08);
}

body.dashboard .muted-text {
    font-size: 0.9rem;
    color: var(--brand-muted);
}

@media (max-width: 900px) {
    body.dashboard .welcome-page {
        text-align: center;
    }
}

@media (max-width: 768px) {
    body.dashboard .dashboard-container {
        padding: 20px;
    }

    body.dashboard .menu-container {
        width: 100%;
        justify-content: flex-start;
    }

    body.dashboard .dropdown-menu {
        position: static;
        width: 100%;
        max-width: none;
        box-shadow: none;
        border: 1px solid #e0e6ed;
        margin-top: 12px;
    }

    body.dashboard .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    body.dashboard .dashboard-header {
        flex-direction: column;
        align-items: stretch;
    }

    body.dashboard .welcome-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    body.dashboard .welcome-page {
        padding: 32px 16px;
    }

    body.dashboard .table {
        min-width: 520px;
    }
}

@media (max-width: 480px) {
    body.dashboard .menu-toggle {
        width: 48px;
        height: 48px;
    }

    body.dashboard .welcome-message {
        font-size: 1.4rem;
    }

    body.dashboard .stat-card {
        padding: 20px;
    }
}
