﻿:root {
    --blue: #0b5ed7;
    --blue2: #084298;
    --blue3: #06357a;
    --bg: #f5f7fb;
    --text: #172033;
    --muted: #6b7280;
    --line: #e5e7eb;
    --green: #138a52;
    --red: #c0392b;
    --shadow: 0 10px 30px rgba(16,24,40,.08);
}

/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: var(--blue);
    text-decoration: none;
}

.shell {
    width: min(1100px, calc(100% - 28px));
    margin: auto;
}

/* =========================================================
   TOP BAR / NAVIGATION
   ========================================================= */

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), #5c8ff0);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.brand span:last-child {
    display: flex;
    flex-direction: column;
}

.brand small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.navlinks {
    display: flex;
    gap: 8px;
}

    .navlinks a {
        padding: 10px 12px;
        border-radius: 10px;
        color: #374151;
    }

        .navlinks a:hover {
            background: #f0f4ff;
        }

.menu-btn {
    display: none;
    border: 0;
    background: #eef3ff;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 20px;
}

/* =========================================================
   PAGE / FOOTER
   ========================================================= */

.page {
    padding: 28px 0 50px;
    min-height: calc(100vh - 130px);
}

.footer {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    padding: 18px;
}

/* =========================================================
   CARDS
   ========================================================= */

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 22px;
}

.auth-wrap {
    min-height: calc(100vh - 170px);
    display: grid;
    place-items: center;
}

    .auth-wrap.wide .auth-card {
        max-width: 720px;
    }

.auth-card {
    width: 100%;
    max-width: 480px;
}

.center {
    text-align: center;
}

.hero-icon {
    font-size: 42px;
}

h1 {
    font-size: clamp(26px,4vw,36px);
    margin: 6px 0 8px;
}

h2 {
    margin: 8px 0 10px;
}

.muted {
    color: var(--muted);
}

/* =========================================================
   FORM CONTROLS
   ========================================================= */

label {
    display: block;
    font-weight: 650;
    margin: 16px 0 7px;
}

input,
select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 11px 13px;
    font: inherit;
    background: #fff;
    color: var(--text);
    outline: none;
}

    input:focus,
    select:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(11,94,215,.12);
    }

/* =========================================================
   NORMAL BUTTONS
   ========================================================= */

.btn {
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 750;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .btn.primary {
        background: var(--blue);
        color: #fff;
    }

        .btn.primary:hover {
            background: var(--blue2);
        }

    .btn.outline {
        background: #fff;
        color: var(--blue);
        border: 1px solid #b8cdf4;
    }

        .btn.outline:hover {
            background: #f3f7ff;
        }

    .btn.full {
        width: 100%;
        margin-top: 20px;
        min-height: 50px;
    }

    .btn.small {
        padding: 9px 12px;
        font-size: 13px;
    }

/* =========================================================
   AUTH HELPERS
   ========================================================= */

.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 14px;
}

.validation {
    color: var(--red);
    font-size: 13px;
}

.password-box {
    position: relative;
}

    .password-box input {
        padding-right: 68px;
    }

    .password-box button {
        position: absolute;
        right: 7px;
        top: 7px;
        height: 34px;
        border: 0;
        background: #eef3ff;
        border-radius: 8px;
        color: var(--blue);
    }

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.type-card {
    margin: 0;
    border: 1px solid #d8dee9;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

    .type-card input {
        width: auto;
        min-height: auto;
        margin-top: 4px;
        accent-color: var(--blue);
    }

    .type-card span {
        display: flex;
        flex-direction: column;
    }

    .type-card small {
        color: var(--muted);
        font-weight: 400;
        margin-top: 3px;
    }

/* =========================================================
   OTP
   ========================================================= */

.otp {
    text-align: center;
    font-size: 28px;
    letter-spacing: 9px;
    font-weight: 800;
}

.inline-form {
    text-align: center;
}

.link-btn {
    border: 0;
    background: none;
    color: var(--blue);
    font-weight: 700;
    margin-top: 14px;
    cursor: pointer;
}

/* =========================================================
   ALERTS
   ========================================================= */

.alert {
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
}

    .alert.success {
        background: #e8f7ef;
        color: #11643d;
    }

    .alert.info {
        background: #eaf2ff;
        color: #174a94;
    }

    .alert.error {
        background: #fdecec;
        color: #9f2d22;
    }

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

.welcome {
    background: linear-gradient(135deg,#0b5ed7,#3e7ce0);
    color: #fff;
    border-radius: 22px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .welcome h1 {
        margin: 0;
    }

    .welcome p {
        margin: 4px 0;
    }

.eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: .8;
}

.verified {
    background: rgba(255,255,255,.16);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin: 18px 0;
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

    .stat b {
        font-size: 25px;
    }

    .stat span {
        color: var(--muted);
        font-size: 13px;
    }

.section-title {
    margin-top: 28px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.action-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: var(--text);
    box-shadow: 0 6px 18px rgba(16,24,40,.05);
}

    .action-card > span {
        font-size: 28px;
    }

    .action-card b {
        margin-top: 10px;
    }

    .action-card small {
        color: var(--muted);
        margin-top: 4px;
    }

/* =========================================================
   PROFILE
   ========================================================= */

.profile-card {
    margin-top: 22px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

    .profile-grid div {
        display: flex;
        flex-direction: column;
    }

    .profile-grid small {
        color: var(--muted);
        margin-bottom: 3px;
    }

.span2 {
    grid-column: span 2;
}

/* =========================================================
   INTERNSHIPS
   ========================================================= */

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

.internship-card {
    display: flex;
    flex-direction: column;
}

.badge {
    align-self: flex-start;
    background: #eaf2ff;
    color: #1855a5;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 800;
}

.meta {
    display: flex;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
    margin-top: auto;
    padding-top: 10px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

    .price-row strong {
        font-size: 24px;
    }

/* =========================================================
   HISTORY
   ========================================================= */

.history-list {
    display: grid;
    gap: 12px;
}

.history-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

    .history-card h2 {
        font-size: 18px;
    }

.history-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.status {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef2f7;
    font-size: 10px;
    font-weight: 800;
}

    .status.paid,
    .status.enrolled {
        background: #e7f7ee;
        color: #127044;
    }

    .status.pending,
    .status.payment-pending {
        background: #fff4d8;
        color: #8a5c00;
    }

    .status.failed,
    .status.cancelled {
        background: #fdebea;
        color: #a33227;
    }

.empty {
    background: #fff;
    border: 1px dashed #cfd5df;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: var(--muted);
}

/* =========================================================
   PAYMENT
   ========================================================= */

.pay-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f8ff;
    border-radius: 14px;
    padding: 16px;
    margin: 18px 0;
}

    .pay-summary strong {
        font-size: 24px;
    }

/* =========================================================
   RECEIPT
   ========================================================= */

.receipt-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.receipt {
    max-width: 850px;
    margin: auto;
}

.receipt-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .receipt-head h1 {
        font-size: 24px;
    }

.paid-stamp {
    border: 3px solid var(--green);
    color: var(--green);
    font-weight: 900;
    padding: 9px 14px;
    border-radius: 10px;
    transform: rotate(-5deg);
}

.receipt-no {
    display: flex;
    justify-content: space-between;
    background: #f6f8fb;
    padding: 13px;
    border-radius: 10px;
}

.receipt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0;
}

    .receipt-grid div {
        display: flex;
        flex-direction: column;
    }

    .receipt-grid small {
        color: var(--muted);
        margin-bottom: 4px;
    }

.receipt-total {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
    padding: 14px 0;
    font-size: 20px;
}

.receipt-note {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 24px;
}

/* =========================================================
   APP STYLE LOGIN / REGISTER / OTP
   ========================================================= */

.auth-app-body {
    margin: 0;
    background: #fff;
    color: #151922;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.app-auth-screen {
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 22px 18px 36px;
}

.app-auth-panel {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* LOGO */

.auth-logo-wrap {
    text-align: center;
    margin: 4px auto 26px;
}

.auth-logo {
    display: block;
    margin: auto;
    width: auto;
    object-fit: contain;
}

.auth-logo-login {
    height: 285px;
    max-width: 88%;
}

.auth-logo-register {
    height: 120px;
    max-width: 64%;
}

.register-logo-wrap {
    margin-bottom: 12px;
}

/* HEADINGS */

.auth-heading h1 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 28px;
    font-weight: 500;
    color: #141922;
}

.register-heading h1 {
    font-size: 29px;
    margin-bottom: 10px;
}

.register-heading p {
    font-size: 20px;
    margin: 0 0 34px;
    color: #4c515b;
}

/* LABELS */

.app-auth-form > label {
    font-size: 20px;
    font-weight: 500;
    margin: 26px 0 12px;
    color: #161b24;
}

/* INPUT BOX */

.app-input {
    width: 100%;
    min-height: 68px;
    border: 1px solid #cbd1d8;
    border-radius: 7px;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .app-input:focus-within {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(11,94,215,.10);
    }

    .app-input input,
    .app-input select {
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0;
        min-height: 66px;
        padding: 0 20px;
        font-size: 19px;
        color: #20242c;
        background: transparent;
        width: 100%;
        outline: 0;
    }

        .app-input input::placeholder {
            color: #777b80;
            opacity: 1;
        }

    .app-input select {
        appearance: auto;
        color: #555b63;
    }

/* ICON INPUT */

.icon-input input {
    padding-left: 55px;
}

.input-icon {
    position: absolute;
    left: 18px;
    z-index: 2;
    color: #777;
    font-size: 27px;
    line-height: 1;
}

.lock-icon {
    font-size: 25px;
    transform: rotate(180deg);
}

/* PASSWORD EYE */

.password-app-input input {
    padding-right: 58px;
}

.eye-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 23px;
    cursor: pointer;
}

    .eye-button:hover {
        color: var(--blue);
    }

    .eye-button.visible {
        opacity: .55;
    }

/* LOGIN OPTIONS */

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin: 30px 2px 42px;
    font-size: 18px;
}

    .login-options a {
        color: var(--blue);
        font-weight: 500;
    }

        .login-options a:hover {
            color: var(--blue2);
        }

.remember-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    cursor: pointer;
}

    .remember-check input {
        width: 23px;
        height: 23px;
        min-height: 0;
        margin: 0;
        accent-color: var(--blue);
    }

/* =========================================================
   AUTH MAIN BUTTONS
   Login / Register / Verify / Forgot / Reset
   ========================================================= */

.app-main-btn,
.app-secondary-btn {
    width: 100%;
    min-height: 68px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

/* BLUE PRIMARY */

.app-main-btn {
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
    box-shadow: 0 5px 14px rgba(11,94,215,.20);
}

    .app-main-btn:hover {
        background: var(--blue2);
        border-color: var(--blue2);
        color: #fff;
    }

    .app-main-btn:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(11,94,215,.16);
    }

    .app-main-btn:active {
        background: var(--blue3);
        border-color: var(--blue3);
        transform: translateY(1px);
    }

    .app-main-btn:disabled {
        background: #9db7dc;
        border-color: #9db7dc;
        color: #fff;
        cursor: not-allowed;
        box-shadow: none;
    }

/* BLUE OUTLINE SECONDARY */

.app-secondary-btn {
    margin-top: 15px;
    background: #fff;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

    .app-secondary-btn:hover {
        background: #f3f7ff;
        border-color: var(--blue2);
        color: var(--blue2);
    }

    .app-secondary-btn:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(11,94,215,.12);
    }

    .app-secondary-btn:active {
        background: #eaf2ff;
    }

/* =========================================================
   AUTH VALIDATION
   ========================================================= */

.auth-validation {
    margin-bottom: 15px;
}

.validation {
    display: block;
    margin-top: 6px;
}

/* =========================================================
   STUDENT TYPE
   ========================================================= */

.student-type-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .student-type-choice label {
        margin: 0 !important;
        border: 1px solid #cbd1d8;
        border-radius: 7px;
        min-height: 58px;
        display: flex;
        align-items: center;
        padding: 0 15px;
        gap: 10px;
        font-size: 17px !important;
        font-weight: 400 !important;
        cursor: pointer;
        transition: .15s ease;
    }

        .student-type-choice label:hover {
            border-color: #8eb1e5;
            background: #f8fbff;
        }

    .student-type-choice input {
        width: 20px;
        height: 20px;
        min-height: 0;
        margin: 0;
        accent-color: var(--blue);
    }

    .student-type-choice label:has(input:checked) {
        border-color: var(--blue);
        background: #f3f7ff;
    }

/* =========================================================
   MOBILE INPUT
   ========================================================= */

.mobile-input {
    padding-left: 15px;
}

    .mobile-input > span {
        white-space: nowrap;
        font-size: 18px;
        color: #454a51;
    }

    .mobile-input > i {
        display: block;
        width: 1px;
        height: 31px;
        background: #bfc4ca;
        margin: 0 4px 0 12px;
    }

    .mobile-input input {
        padding-left: 10px;
    }

.register-submit {
    margin-top: 34px;
}

.register-screen {
    padding-top: 12px;
    padding-bottom: 32px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:720px) {

    .shell {
        width: min(100% - 20px,1100px);
    }

    .page {
        padding-top: 16px;
    }

    .menu-btn {
        display: block;
    }

    .navlinks {
        display: none;
        position: absolute;
        left: 10px;
        right: 10px;
        top: 64px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        padding: 8px;
        flex-direction: column;
    }

    .menu-open .navlinks {
        display: flex;
    }

    .brand b {
        font-size: 14px;
    }

    .two,
    .type-grid,
    .stats,
    .action-grid,
    .list-grid,
    .profile-grid,
    .receipt-grid {
        grid-template-columns: 1fr;
    }

    .span2 {
        grid-column: auto;
    }

    .welcome {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }

    .verified {
        align-self: flex-start;
    }

    .history-card {
        align-items: flex-start;
    }

    .history-right {
        min-width: 105px;
    }

    .auth-card {
        padding: 18px;
    }

    .receipt {
        border-radius: 0;
        box-shadow: none;
    }

    .receipt-head {
        align-items: flex-start;
    }

        .receipt-head h1 {
            font-size: 19px;
        }

    .price-row {
        gap: 12px;
    }
}

@media (max-width:560px) {

    .app-auth-screen {
        padding-left: 22px;
        padding-right: 22px;
    }

    .auth-logo-login {
        height: 285px;
        max-width: 90%;
    }

    .auth-logo-register {
        height: 115px;
    }

    .auth-heading h1 {
        font-size: 23px;
    }

    .register-heading h1 {
        font-size: 28px;
    }

    .register-heading p {
        font-size: 19px;
    }

    .app-input {
        min-height: 66px;
    }

        .app-input input,
        .app-input select {
            min-height: 64px;
            font-size: 18px;
        }

    .app-auth-form > label {
        font-size: 19px;
    }

    .login-options {
        font-size: 17px;
    }

    .remember-check {
        font-size: 17px !important;
    }
}

@media (max-width:390px) {

    .auth-logo-login {
        height: 245px;
    }

    .login-options {
        font-size: 15px;
    }

    .remember-check {
        font-size: 15px !important;
    }

    .app-auth-screen {
        padding-left: 16px;
        padding-right: 16px;
    }

    .student-type-choice {
        grid-template-columns: 1fr;
    }

    .auth-logo-register {
        height: 100px;
    }
}

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

@media print {

    body {
        background: #fff;
    }

    .topbar,
    .footer,
    .no-print {
        display: none !important;
    }

    .page {
        padding: 0;
    }

    .receipt {
        border: 0;
        box-shadow: none;
        max-width: none;
    }

    .shell {
        width: 100%;
    }
}
/* =========================================================
   FINAL STUDENT MOBILE APP DASHBOARD
   ========================================================= */

.student-app-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #f5f7fb;
    color: #172033;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.student-app-main {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}


/* DASHBOARD */

.mobile-dashboard {
    width: 100%;
    max-width: 520px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 28px 18px 40px;
}


/* USER */

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 32px;
}

.dashboard-user-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: #0b5ed7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(11,94,215,.20);
}

.dashboard-user small {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 2px;
}

.dashboard-user h1 {
    margin: 0;
    color: #172033;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 750;
}


/* MENU */

.dashboard-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* BUTTON */

.dashboard-button {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(16,24,40,.06);
    color: #172033;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}

    .dashboard-button:hover {
        color: #172033;
        box-shadow: 0 8px 22px rgba(16,24,40,.09);
    }

    .dashboard-button:active {
        transform: scale(.98);
        background: #f8faff;
    }


/* ICON */

.dashboard-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    font-weight: 800;
}


/* ICON COLORS */

.icon-blue {
    background: #e8f1ff;
    color: #0b5ed7;
}

.icon-green {
    background: #e6f7ee;
    color: #138a52;
}

.icon-purple {
    background: #f2eaff;
    color: #7545c8;
}

.icon-orange {
    background: #fff0da;
    color: #d77b00;
}


/* BUTTON TEXT */

.dashboard-button-title {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #172033;
}


/* ARROW */

.dashboard-arrow {
    padding-left: 10px;
    color: #9ca3af;
    font-size: 31px;
    line-height: 1;
    font-weight: 300;
}


/* ALERTS */

.student-app-main > .alert {
    width: calc(100% - 36px);
    max-width: 484px;
    margin: 15px auto 0;
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .mobile-dashboard {
        max-width: none;
        padding: max(22px, env(safe-area-inset-top)) 16px max(30px, env(safe-area-inset-bottom));
    }

    .dashboard-user {
        margin-bottom: 27px;
    }

    .dashboard-user-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
        font-size: 20px;
    }

    .dashboard-user h1 {
        font-size: 20px;
    }

    .dashboard-menu {
        gap: 12px;
    }

    .dashboard-button {
        min-height: 78px;
        padding: 13px 14px;
        border-radius: 15px;
    }

    .dashboard-icon {
        width: 49px;
        height: 49px;
        min-width: 49px;
        margin-right: 13px;
        font-size: 22px;
    }

    .dashboard-button-title {
        font-size: 16px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .mobile-dashboard {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dashboard-button {
        min-height: 74px;
    }

    .dashboard-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
}