/* Panel Styles - Notification Settings Box */

.notification-settings {
    background: var(--color-card-bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px var(--color-shadow);
    transition: background-color 0.3s ease;
}

.notification-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.notification-saved {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.notification-saved.visible {
    opacity: 1;
}

.notification-btn {
    margin-left: auto;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

/* OFF state - red */
.notification-settings.off .notification-icon {
    filter: grayscale(100%);
}

.notification-settings.off .notification-text {
    color: #dc3545;
}

.notification-settings.off .notification-btn {
    background-color: #28a745;
    color: white;
}

.notification-settings.off .notification-btn:hover {
    background-color: #218838;
}

/* ON state - green */
.notification-settings.on .notification-text {
    color: #28a745;
}

.notification-settings.on .notification-btn {
    background-color: #dc3545;
    color: white;
}

.notification-settings.on .notification-btn:hover {
    background-color: #c82333;
}

/* Preferences row */
.notification-preferences {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.preference-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}

.preference-option input[type="radio"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #28a745;
}
