/* White Noise Specific Styles */

.noise-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
}

.noise-item-card {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.noise-item-card:hover {
    border-color: #b38728;
    background: #333;
}

.noise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.noise-name {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.noise-value {
    font-size: 0.9rem;
    color: #b38728;
    font-weight: 700;
}

.volume-slider {
    width: 100%;
    height: 4px;
    background: #444;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    accent-color: #b38728;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #b38728;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.preset-bar,
.custom-slots-bar,
.pomodoro-timer-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #333;
}

.tools-horizontal-layout {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.custom-slots-bar {
    flex: 1;
    min-width: 300px;
}

.pomodoro-timer-bar {
    flex: 0 1 auto;
    min-width: 350px;
}

.timer-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timer-display {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
    color: #48c78e;
    min-width: 80px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.timer-settings {
    display: flex;
    align-items: center;
}

.slots-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.slot-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slot-label {
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 768px) {
    .noise-grid-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}