/* AI Pictures Forum - Notification Toggle Styles */
/* Location: /public_html/includes/notifications/notification_styles.css */

/* Notification Toggle Button */
.notification-toggle-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-toggle-btn.enabled {
    background: #10b981;
    color: white;
}

.notification-toggle-btn.enabled:hover {
    background: #059669;
}

.notification-toggle-btn.disabled {
    background: #dc2626;
    color: white;
}

.notification-toggle-btn.disabled:hover {
    background: #b91c1c;
}

@media (max-width: 768px) {
    .notification-toggle-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}