/* styles/components/notifications.css */
.notification-request-banner,
.permission-recovery-banner,
.brave-specific-banner {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;
    border: 1px solid var(--theme-border);
    border-radius: 5px;
    background-color: var(--theme-section-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    pointer-events: auto;
    color: var(--theme-text);
}

.brave-instructions-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    pointer-events: auto;
}

.brave-instructions-box {
    background: #252a3d;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    color: hsl(0, 0%, 100%);
    max-height: 90vh;
    overflow-y: auto;
    pointer-events: auto;
    position: relative;
    z-index: 10001;
}