diff --git a/templates/base.html b/templates/base.html index 5550ebd..d82fecb 100644 --- a/templates/base.html +++ b/templates/base.html @@ -515,6 +515,59 @@ transition: background-color 0.3s ease, border-color 0.3s ease; } + /* Labels styling */ + .utility-belt label { + color: var(--text-primary); + transition: color 0.3s ease; + } + + /* Username input styling */ + #username-input, #username-input-mobile { + width: 100%; + padding: 4px; + margin-top: 2px; + border: 1px solid var(--border-color); + border-radius: 3px; + background-color: var(--bg-secondary); + color: var(--text-primary); + transition: background-color 0.3s ease, border-color 0.3s ease; + } + + /* Search input styling */ + #search-keywords { + width: 100%; + text-align: center; + background-color: var(--bg-secondary); + color: var(--text-primary); + border: 1px solid var(--border-color); + padding: 8px; + border-radius: 5px; + transition: background-color 0.3s ease, border-color 0.3s ease; + } + + /* Theme toggle button styling */ + #theme-toggle-btn, #theme-toggle-btn-mobile { + width: 100%; + margin-top: 10px; + background-color: #6c757d; + color: white; + border: none; + padding: 8px; + border-radius: 4px; + cursor: pointer; + transition: background-color 0.3s ease; + } + + #theme-toggle-btn:hover, #theme-toggle-btn-mobile:hover { + background-color: #5a6268; + } + + /* User lists styling */ + #user-lists h3, #user-lists-mobile h3 { + color: var(--text-primary); + transition: color 0.3s ease; + } + /* Media query for mobile devices */ @media (max-width: 768px) { .main-container { @@ -536,7 +589,7 @@