/* modals_pause_settings.css - Pause Overlay and Settings Modal */

/* Pause Overlay */
#pause-overlay { z-index: 2100; }
#pause-content { border-color: #00e5ff; }
#pause-header { color: #00e5ff; text-shadow: 0 0 10px #00e5ff; }

/* Settings Modal */
#settings-content {
    background: linear-gradient(145deg, #1a1a1a, #050505);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), inset 0 0 15px rgba(255, 215, 0, 0.1);
    position: relative;
}
#settings-header {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.settings-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 10px; 
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
.settings-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.settings-label { color: #eee; font-size: 13px; font-weight: bold; margin-bottom: 2px; }
.settings-desc { color: #888; font-size: 10px; font-style: italic; }

.settings-action-row { display: flex; width: 100%; margin-top: 10px; }
.settings-action-btn { 
    flex: 1; 
    background: rgba(255, 255, 255, 0.05); 
    color: #ffd700; 
    border: 1px solid rgba(255, 215, 0, 0.3); 
    padding: 12px; 
    border-radius: 6px; 
    cursor: pointer; 
    font-size: 11px; 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    transition: all 0.2s; 
}
.settings-action-btn:hover { background: rgba(255, 215, 0, 0.1); border-color: #ffd700; transform: translateY(-2px); }
.settings-action-btn.danger { 
    background: linear-gradient(to bottom, #300, #1a0000);
    color: #ff4500; 
    border-color: rgba(255, 69, 0, 0.3); 
}
.settings-action-btn.danger:hover { 
    background: #400; 
    border-color: #ff4500; 
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}
