﻿.notif-wrap {
    padding: 14px;
}

.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.notif-title {
    font-size: 18px;
    font-weight: 600;
}

.notif-state {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lbl {
    font-size: 12px;
    opacity: 0.8;
}

.select {
    min-width: 220px;
    padding: 6px 8px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
}

.notif-grid {
    border: 1px solid rgba(0,0,0,0.18);
    border-radius: 8px;
    overflow: hidden;
}

.notif-grid-head {
    display: grid;
    grid-template-columns: 44px 1fr;
    padding: 10px 12px;
    background: rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.12);
    font-weight: 600;
}

.notif-grid-body {
    max-height: 420px;
    overflow: auto;
}

.notif-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
}

    .notif-row:last-child {
        border-bottom: none;
    }

    .notif-row.selected {
        background: rgba(255, 140, 0, 0.08);
    }

.col-check {
    display: flex;
    align-items: center;
    justify-content: center;
}

.subject-text {
    font-size: 14px;
    font-weight: 500;
}

.meta-text {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 2px;
}

.notif-footer {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.snooze {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.btn {
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.25);
    background: white;
    cursor: pointer;
}

    .btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.btn-ghost {
    background: rgba(0,0,0,0.04);
}
