.notification-bell {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    background: #ffffff;
    color: #123f2a;
    text-decoration: none;
}

    .notification-bell:hover {
        background: #f2f7f4;
    }

.notification-bell-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.notification-bell-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #b42318;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
}

.notification-toolbar-card {
    margin-bottom: 1rem;
    padding: 1rem;
}

.notification-filter-row,
.notification-filters,
.notification-card-actions,
.notification-card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.notification-filter-row {
    justify-content: space-between;
}

.notification-list {
    display: grid;
    gap: 1rem;
}

.notification-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1.25rem;
    border-left: 5px solid transparent;
}

    .notification-card.is-unread {
        border-left-color: #216c49;
        background: #f7fbf8;
    }

    .notification-card.is-read {
        opacity: 0.84;
    }

.notification-card-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

    .notification-card-heading h2 {
        margin: 0.45rem 0 0;
        font-size: 1.15rem;
    }

    .notification-card-heading time {
        color: #667085;
        font-size: 0.84rem;
        white-space: nowrap;
    }

.notification-card-main p {
    margin: 0.8rem 0 0;
    color: #475467;
    line-height: 1.55;
}

.notification-status-tag,
.notification-priority-tag {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #e8f2ec;
    color: #166534;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.notification-priority-tag {
    background: #fff4e5;
    color: #9a3412;
}

.notification-priority-high {
    background: #fee4e2;
    color: #b42318;
}

.notification-card-actions {
    align-content: start;
    justify-content: flex-end;
}

    .notification-card-actions form {
        margin: 0;
    }

.notification-empty {
    padding: 2.5rem;
    text-align: center;
}

.pagination-summary {
    color: #667085;
    font-weight: 700;
}

.pagination-button.is-disabled {
    pointer-events: none;
    opacity: 0.45;
}

@media (max-width: 760px) {
    .notification-card {
        grid-template-columns: 1fr;
    }

    .notification-card-heading,
    .notification-filter-row {
        align-items: flex-start;
        flex-direction: column;
    }

        .notification-card-heading time {
            white-space: normal;
        }

    .notification-card-actions {
        justify-content: flex-start;
    }
}
