/* =========================
   STTYTT — Notifications Page
   Consistent Maroon × Gold System
========================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root{
    --maroon:#3D0000;
    --maroon-2:#6B0000;
    --maroon-3:#1F0000;
    --gold:#D4AF37;
    --gold-dark:#8B6914;
    --gold-light:#F5DEB3;
    --bg:#FAF3E0;
    --white:#FFFFFF;
    --ink:#2A0E0E;
    --muted:#7A6A5D;
    --border:#E6D9BE;
    --shadow:0 6px 20px rgba(31,0,0,.07);
    --shadow-hover:0 14px 32px rgba(31,0,0,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'DM Sans', sans-serif;
}

body{
    background:var(--bg);
    padding:32px 20px;
    min-height:100vh;
}

h1{
    text-align:center;
    margin-bottom:30px;
    color:var(--maroon-2);
    font-family:'Big Shoulders Display', sans-serif;
    font-size:34px;
    font-weight:700;
    letter-spacing:.3px;
}

#notificationContainer{
    max-width:900px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.notification{
    background:var(--white);
    border-left:4px solid var(--gold-dark);
    padding:20px 22px;
    border-radius:14px;
    box-shadow:var(--shadow);
    border-top:1px solid var(--border);
    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border);
    transition:.3s ease;
}

.notification:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-hover);
    border-left-color:var(--gold);
}

.notification h3{
    color:var(--maroon-2);
    margin-bottom:8px;
    font-family:'Big Shoulders Display', sans-serif;
    font-size:20px;
    font-weight:700;
}

.notification p{
    color:var(--muted);
    line-height:1.6;
    font-size:15px;
    margin-bottom:10px;
}

.notification small{
    color:#A0937E;
    display:block;
    text-align:right;
    font-size:12.5px;
    font-weight:500;
}

/* Empty Message */

.empty{
    background:var(--white);
    padding:50px 30px;
    border-radius:16px;
    text-align:center;
    color:var(--muted);
    box-shadow:var(--shadow);
    border:1px dashed var(--border);
}

/* Tablet */

@media(max-width:768px){

    body{
        padding:20px 15px;
    }

    h1{
        font-size:28px;
    }

    .notification{
        padding:18px;
    }

    .notification h3{
        font-size:18px;
    }

    .notification p{
        font-size:14px;
    }
}

/* Mobile */

@media(max-width:480px){

    body{
        padding:16px 12px;
    }

    h1{
        font-size:24px;
    }

    .notification{
        padding:16px;
        border-left:4px solid var(--gold-dark);
    }

    .notification h3{
        font-size:17px;
    }

    .notification p{
        font-size:13px;
    }

    .notification small{
        font-size:12px;
    }
}