/* ROOT */
#student-notif-root {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #f5f7fb;
    font-family: "Poppins", sans-serif;
background-color: #09103f;
    background-image: url("/client/assets/images/bg/notification_bg_portrait.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (orientation: landscape) {
    #student-notif-root {
        background-image: url("/client/assets/images/bg/notification_bg_landscape.jpg");
    }
}
.student-notif-topbar {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: #0a2a43;
    color: white;
}

.student-notif-back {
    background: #123d5c;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.student-notif-title {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

/* CONTENT */
.student-notif-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* EMPTY */
.student-notif-empty {
    text-align: center;
    margin-top: 40px;
    color: #64748b;
}

/* CARD */
.student-notif-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.student-notif-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* HEADER ROW */
.student-notif-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
}

/* TYPE BADGE */
.student-notif-type {
    background: #e0f2fe;
    color: #0369a1;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
}

/* BODY */
.student-notif-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* TITLE */
.student-notif-title-text {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

/* MESSAGE */
.student-notif-message {
    font-size: 13px;
    color: #334155;
    line-height: 1.4;
}

/* SCORE */
.student-notif-score {
    font-size: 12px;
    color: #0f172a;
    font-weight: 500;
}

/* READ STATE */
.student-notif-card.read {
    opacity: 0.75;
}
/* FOOTER */
.student-notif-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

/* DELETE BUTTON */
.student-notif-delete-btn {
    border: none;
    border-radius: 8px;

    padding: 8px 12px;

    background: #ef4444;
    color: white;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.2s ease;
}

.student-notif-delete-btn:hover {
    background: #dc2626;
}