Spaces:
Sleeping
Sleeping
| .controls { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| background: rgba(255, 255, 255, 0.05); | |
| padding: 0.5rem 1rem; | |
| border-radius: 20px; | |
| border: 1px solid var(--border-glass); | |
| } | |
| .label { | |
| font-size: 0.85rem; | |
| color: var(--text-secondary); | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| margin-right: 0.5rem; | |
| } | |
| .button { | |
| background: rgba(255, 255, 255, 0.1); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| color: var(--text-primary); | |
| font-weight: bold; | |
| cursor: pointer; | |
| padding: 0.25rem 0.75rem; | |
| border-radius: 8px; | |
| transition: all 0.2s ease; | |
| } | |
| .button:hover { | |
| background: var(--accent-primary); | |
| color: #fff; | |
| border-color: var(--accent-primary); | |
| } | |