* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%); color: #e0e0e0; overflow: hidden; } /* Title Bar */ .title-bar { -webkit-app-region: drag; background: rgba(0, 0, 0, 0.3); padding: 8px 12px; padding-left: 6px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); height: 36px; } .title { color: #e0e0e0; font-family: 'Libre Baskerville', serif; font-size: 14px; font-weight: 400; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; } .app-logo { width: 19px; height: 19px; border-radius: 6px; opacity: 0.8; } .controls { -webkit-app-region: no-drag; display: flex; gap: 8px; margin-right: -10px; } .control-btn { width: 28px; height: 28px; border: none; background: rgba(255, 255, 255, 0.05); color: #a0a0a0; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s ease; } .control-btn:hover { background: rgba(255, 255, 255, 0.1); color: #ffffff; } .close-btn:hover { background: #e74c3c; color: white; } #settings-app { width: 100%; min-height: 100vh; display: flex; flex-direction: column; } .settings-container { max-width: 600px; margin: 0 auto; padding: 24px; flex: 1; } .settings-section { margin-bottom: 24px; } .settings-section h2 { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: #e0e0e0; } /* 2-Column Grid for Color Pickers */ .color-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; } .color-item { display: flex; flex-direction: column; align-items: center; gap: 8px; } .color-item label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #a0a0a0; text-align: center; } .color-item input[type="color"] { width: 80px; height: 50px; border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 8px; background: transparent; cursor: pointer; padding: 4px; transition: all 0.2s ease; } .color-item input[type="color"]:hover { border-color: rgba(255, 255, 255, 0.4); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } .color-item input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; } .color-item input[type="color"]::-webkit-color-swatch { border: none; border-radius: 6px; } /* Buttons */ .btn-secondary, .btn-danger, .btn-coffee { width: 100%; padding: 10px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; border: none; display: flex; align-items: center; justify-content: center; gap: 8px; } .btn-secondary { background: rgba(255, 255, 255, 0.1); color: #e0e0e0; border: 1px solid rgba(255, 255, 255, 0.2); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-1px); } .btn-danger { background: transparent; color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.5); } .btn-danger:hover { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.7); } .btn-coffee { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); color: #1a1a1a; } .btn-coffee:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4); } .btn-coffee svg { flex-shrink: 0; } /* Divider */ .divider { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.15); margin: 24px 0; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } /* Disclaimer */ .disclaimer { font-size: 11px; color: #666; text-align: center; line-height: 1.5; } .disclaimer strong { color: #888; } /* Disclaimer spacing */ .disclaimer { margin-top: 16px; }