/* ============================================
   Settings Button
   ============================================ */
.settings-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--bg-secondary);
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.settings-btn:active {
    background: var(--accent);
    color: white;
}

.settings-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Settings Modal
   ============================================ */
.modal-settings {
    max-width: 450px;
}

.settings-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.settings-section:last-of-type {
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}

.settings-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1rem 0;
}

.settings-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.settings-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================
   Theme Options
   ============================================ */
.theme-options {
    display: flex;
    gap: 10px;
}

.theme-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.theme-option:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.theme-option.active {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--text-primary);
}

.theme-option svg {
    width: 28px;
    height: 28px;
}

.theme-option span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   Time Format Toggle
   ============================================ */
.time-format-toggle {
    display: flex;
    gap: 8px;
}

.format-btn {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.format-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.format-btn.active {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--text-primary);
}

/* ============================================
   Weather Status (in Settings)
   ============================================ */
.weather-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-input);
    border-radius: 8px;
    font-size: 0.9rem;
}

.weather-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.weather-status.connected .status-dot {
    background: var(--success);
}

.weather-status.disconnected .status-dot {
    background: var(--text-muted);
}
