/* Notification Controls Styles */
.notification-controls {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.notification-controls h3 {
    color: #f89406;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

/* Toggle Switch */
.notification-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #f89406;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.toggle-label {
    color: #fff;
    font-weight: 500;
}

/* Notification Options */
.notification-options {
    border-top: 1px solid #444;
    padding-top: 15px;
}

.frequency-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.frequency-control label {
    color: #fff;
    font-weight: 500;
}

.frequency-control select {
    background: #333;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 8px 12px;
    min-width: 150px;
}

.notification-preview {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Current Stats */
.current-stats {
    background: rgba(40, 40, 40, 0.6);
    border: 1px solid #444;
    border-radius: 6px;
    padding: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-label {
    color: #ccc;
    font-weight: 500;
}

.stat-value {
    color: #f89406;
    font-weight: bold;
    background: rgba(248, 148, 6, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(248, 148, 6, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .notification-toggle {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .notification-preview {
        flex-direction: column;
    }
    
    .frequency-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}