/* ================================
   NOTIFICATION PAGE
================================ */

.notification-page {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 30px 60px;
}


/* Page Title */

.notification-page h2 {
    color: #43208a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}


/* Notification Card */

.notification-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 25px;
    margin-bottom: 18px;

    box-shadow: 0 8px 25px rgba(67, 32, 138, 0.08);

    border-left: 5px solid #7040c8;

    transition: 0.2s ease;
}


/* Hover */

.notification-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(67, 32, 138, 0.14);
}


/* Notification link */

.notification-card a {
    text-decoration: none;
    color: #43208a;
}


/* Message */

.notification-card p {
    margin: 0 0 8px;

    font-size: 16px;
    line-height: 1.6;

    font-weight: 500;
}


/* Date */

.notification-card small {
    color: #777;

    font-size: 13px;
}


/* Empty notification */

.no-notification {
    background: #ffffff;

    border-radius: 18px;

    padding: 45px;

    text-align: center;

    color: #777;

    box-shadow: 0 8px 25px rgba(67, 32, 138, 0.08);
}
