﻿.notification-card {
    border: 1px solid #e5e7eb;
}

.notification-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-text {
    flex: 1;
}

.notification-popover {
    width: 420px;
    max-width: calc(100vw - 32px);
    border-radius: 12px;
    border: 1px solid var(--rr-border);
    overflow: hidden;
}

.notification-content {
    padding: 16px;
    width: 420px;
    box-sizing: border-box;
}

.notification-scroll-area {
    max-height: min(60vh, 600px);
    overflow-y: auto;
    overflow-x: hidden;
}


