* Add email OTP authentication system and private room management ## Authentication System - Implement email OTP-based authentication with User and OTPToken models - Add auth.py module with OTP generation, email sending, and session management - Create authentication endpoints: /auth/send-otp, /auth/verify-otp, /auth/claim-name, /auth/status, /auth/logout - Add authentication modal UI with email verification and display name claiming - Support SMTP configuration via environment variables (optional) ## Room Privacy & Ownership - Add is_private, is_archived, owner_id, and forked_from_id fields to Room model - Implement private rooms (single-user, owner-only access) - Add room forking: users can fork public rooms to public or private - Add room archive/delete endpoints (owner-only operations) - Implement access control for private room viewing ## UI Improvements - Add public/private room tabs in sidebar - Show authentication prompt in private rooms tab for non-authenticated users - Add room action buttons (fork, archive, delete) with proper permissions - Update homepage with statistics (public/private rooms, active users, active rooms) - Remove model/voice from URL query strings, use localStorage exclusively ## Database Migration - Create migration 2025011100 for User, OTPToken tables and Room model updates - Add indexes for email, display_name, is_private, is_archived, owner_id ## Breaking Changes - URL parameters now only include username (model/voice moved to localStorage) - Private rooms require authentication to access - Room creation can now require authentication (for private rooms) * Update README with authentication and private room documentation * Simplify README to be less verbose * Add missing session import to fix linter errors * Fix migration dependency to resolve multiple heads conflict * asdf * Fix SQLAlchemy auto-correlation error in homepage statistics query * Change tagline from AI-Powered to Machine Learning Powered * Add dedicated authentication page instead of modal - Create new /auth route with full-page authentication flow - Remove modal code from index.html - Update Sign in link to point to /auth page - Auth page has 4-step flow: email, OTP, display name, success - Better UX with gradient background and cleaner design * Fix migration: remove batch_alter_table to avoid circular dependency - Use op.add_column() directly instead of batch_alter_table() - Remove foreign key constraints (defined in models, not needed in migration) - User and OTPToken tables created by db.create_all() in make init-db - Fixes CircularDependencyError during migration * Fix migration: check if columns exist before adding - Use inspector to check existing columns and indexes - Only add columns/indexes if they don't already exist - Handles case where db.create_all() was run before migration - Fixes 'duplicate column name' error * Add profile page, room browsing, and updated_at timestamp Features: - Profile page with username change and dark/light mode settings - Browse page for discovering public and private rooms - Room updated_at timestamp (integer Unix epoch) that updates on new messages - Dynamic room tabs based on current room type (public/private) - Fork and delete room actions moved to right sidebar utility belt - Remove archive feature and success alerts from room actions Technical changes: - Add updated_at column to Room model (integer timestamp) - Add /profile route with authentication requirement - Add /browse route for room discovery - Add API endpoints for username availability check and update - Update room.updated_at on message creation in app.py:1189 - Wider right sidebar (25% instead of 15%) for better button layout - Profile link on homepage and browse page for authenticated users --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: russell@unturf. <russell@unturf.com>
657 lines
16 KiB
CSS
657 lines
16 KiB
CSS
/* CSS Variables for Light and Dark Themes */
|
|
:root {
|
|
--bg-primary: #f7f7f7;
|
|
--bg-secondary: #ffffff;
|
|
--bg-tertiary: #f8f9fa;
|
|
--bg-code: #f0f0f0;
|
|
--text-primary: #000000;
|
|
--text-secondary: #495057;
|
|
--text-muted: #666;
|
|
--text-info: #0066cc;
|
|
--text-success: #008800;
|
|
--text-error: #cc0000;
|
|
--link-color: #0066cc;
|
|
--link-hover: #004499;
|
|
--border-color: #e1e1e1;
|
|
--border-color-dark: #ced4da;
|
|
--border-code: #ccc;
|
|
--button-primary: #007bff;
|
|
--button-primary-hover: #0056b3;
|
|
--button-success: #28a745;
|
|
--button-success-hover: #218838;
|
|
--button-activity: #4CAF50;
|
|
--button-danger: #f44336;
|
|
--shadow: rgba(0, 0, 0, 0.1);
|
|
--shadow-dark: rgba(0, 0, 0, 0.2);
|
|
--highlight-bg: #f8f9fa;
|
|
--code-line-numbers: #999;
|
|
--modal-overlay: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
[data-theme="dark"] {
|
|
--bg-primary: #1a1a1a;
|
|
--bg-secondary: #2d2d2d;
|
|
--bg-tertiary: #252525;
|
|
--bg-code: #1e1e1e;
|
|
--text-primary: #e0e0e0;
|
|
--text-secondary: #b0b0b0;
|
|
--text-muted: #888;
|
|
--text-info: #4da3ff;
|
|
--text-success: #5fcc5f;
|
|
--text-error: #ff6b6b;
|
|
--link-color: #58a6ff;
|
|
--link-hover: #79b8ff;
|
|
--border-color: #404040;
|
|
--border-color-dark: #4a4a4a;
|
|
--border-code: #555;
|
|
--button-primary: #0d6efd;
|
|
--button-primary-hover: #0b5ed7;
|
|
--button-success: #198754;
|
|
--button-success-hover: #157347;
|
|
--button-activity: #4CAF50;
|
|
--button-danger: #dc3545;
|
|
--shadow: rgba(0, 0, 0, 0.3);
|
|
--shadow-dark: rgba(0, 0, 0, 0.5);
|
|
--highlight-bg: #2a2a2a;
|
|
--code-line-numbers: #666;
|
|
--modal-overlay: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
/* Dark theme overrides for code blocks */
|
|
[data-theme="dark"] .hljs {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
[data-theme="dark"] pre {
|
|
background-color: var(--bg-code);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
[data-theme="dark"] code {
|
|
background-color: var(--bg-code);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
/* Basic styling for the chat application */
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-color: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden; /* Prevent scrolling of the main viewport */
|
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
}
|
|
|
|
/* Styling for the chat container */
|
|
#chat-container {
|
|
display: grid;
|
|
grid-template-rows: 1fr auto;
|
|
width: 100%;
|
|
height: 90vh;
|
|
background-color: var(--bg-secondary);
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
box-shadow: 0 2px 6px var(--shadow);
|
|
box-sizing: border-box;
|
|
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
/* Styling for the chat area */
|
|
#chat {
|
|
overflow-y: auto;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 5px;
|
|
padding-left: 10px;
|
|
margin-bottom: 10px;
|
|
width: 100%; /* Allow chat window to fill available space */
|
|
background-color: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
/* Styling for the message input area */
|
|
#message, .message-edit {
|
|
width: 100%;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
display: block;
|
|
background-color: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
min-height: 60px;
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
resize: none;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Styling for the message body wrapper that contains header and content */
|
|
.message-body {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Styling for the message header (username/model) */
|
|
.message-header {
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Styling for the message div holding html/markdown content */
|
|
.message-content {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Styling for individual message wrappers */
|
|
.message-wrapper {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
align-items: start;
|
|
gap: 4px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
/* Styling for the delete and edit buttons next to messages */
|
|
.message-wrapper button {
|
|
margin-right: 4px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
/* Styling for the button container within each message */
|
|
.button-container {
|
|
display: grid;
|
|
grid-auto-rows: min-content; /* Ensure each button takes up only as much space as it needs */
|
|
gap: 4px; /* Vertical space between buttons */
|
|
}
|
|
|
|
/* Styling for paragraphs, used for messages */
|
|
p {
|
|
margin: 0;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
/* Styling for the main container that holds the rooms list and chat */
|
|
.main-container {
|
|
display: grid;
|
|
grid-template-columns: 15% 60% 25%;
|
|
width: 100%;
|
|
height: 90vh;
|
|
}
|
|
|
|
/* Styling for the rooms list */
|
|
#rooms-list {
|
|
border-right: 1px solid var(--border-color);
|
|
overflow-y: auto;
|
|
padding: 10px;
|
|
background-color: var(--bg-secondary);
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
/* Styling for site header */
|
|
#site-header {
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
#opencompletion-btn {
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: var(--button-primary);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
#opencompletion-btn:hover {
|
|
background-color: var(--button-primary-hover);
|
|
}
|
|
|
|
/* Styling for new room creation section */
|
|
#new-room-section {
|
|
margin-bottom: 20px;
|
|
padding: 10px;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 5px;
|
|
background-color: var(--bg-tertiary);
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
#new-room-section h4 {
|
|
margin: 0 0 10px 0;
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
#new-room-name {
|
|
width: 100%;
|
|
padding: 8px;
|
|
border: 1px solid var(--border-color-dark);
|
|
border-radius: 3px;
|
|
font-size: 12px;
|
|
resize: vertical;
|
|
margin-bottom: 10px;
|
|
box-sizing: border-box;
|
|
background-color: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
#create-room-btn {
|
|
width: 100%;
|
|
padding: 8px;
|
|
background-color: var(--button-success);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 3px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
#create-room-btn:hover {
|
|
background-color: var(--button-success-hover);
|
|
}
|
|
|
|
/* Styling for public rooms header */
|
|
#public-rooms-header {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#public-rooms-header h4 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
border-bottom: 1px solid var(--border-color);
|
|
padding-bottom: 5px;
|
|
transition: color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
/* Styling for the unordered list in the rooms list */
|
|
#rooms-list ul, #rooms-list-modal-content ul {
|
|
list-style: none; /* Removes default list styling */
|
|
padding: 0; /* Resets default padding */
|
|
margin: 0; /* Resets default margin */
|
|
}
|
|
|
|
/* Styling for list items in the rooms list */
|
|
#rooms-list li {
|
|
margin-bottom: 10px; /* Adds space between items */
|
|
padding: 5px; /* Adds padding inside each item */
|
|
border: 1px solid var(--border-color); /* Adds a border around each item */
|
|
border-radius: 5px; /* Optional: Rounds the corners of the border */
|
|
background-color: var(--bg-secondary);
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
/* General link styling */
|
|
a {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--link-hover);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Styling for links in the rooms list */
|
|
#rooms-list a {
|
|
color: var(--link-color);
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
#rooms-list a:hover {
|
|
color: var(--link-hover);
|
|
}
|
|
|
|
.hljs {
|
|
position: relative;
|
|
padding-left: 46px !important;
|
|
counter-reset: line;
|
|
background-color: var(--bg-code) !important;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.hljs .line-numbers-rows {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 3em; /* Adjust the width as needed */
|
|
letter-spacing: -1px;
|
|
border-right: 1px solid var(--border-code); /* Optional: adds a line to separate numbers */
|
|
text-align: right;
|
|
margin-top: 14px; /* Align with the code block */
|
|
color: var(--code-line-numbers);
|
|
pointer-events: none;
|
|
transition: border-color 0.3s ease, color 0.3s ease;
|
|
}
|
|
|
|
.hljs .line-numbers-rows span {
|
|
display: block;
|
|
counter-increment: line;
|
|
}
|
|
|
|
.hljs .line-numbers-rows span::before {
|
|
content: counter(line);
|
|
display: block;
|
|
padding-right: 0.8em; /* Adjust the padding as needed */
|
|
}
|
|
.download-links {
|
|
text-align: center;
|
|
}
|
|
|
|
/* Hamburger button styling */
|
|
#hamburger-button {
|
|
display: none; /* Hidden by default */
|
|
position: fixed;
|
|
top: 20px;
|
|
left: 20px;
|
|
background-color: #333;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
z-index: 1001;
|
|
}
|
|
|
|
/* Modal styling */
|
|
#room-list-modal {
|
|
display: none; /* Hidden by default */
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--modal-overlay);
|
|
z-index: 1002;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
#room-list-modal-content {
|
|
display: none; /* Hidden by default */
|
|
background-color: var(--bg-secondary);
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
width: 80%;
|
|
max-width: 400px;
|
|
max-height: 80vh;
|
|
overflow-y: auto; /* Make the room list scrollable */
|
|
position: relative;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
/* Close button styling */
|
|
#close-modal-button {
|
|
display: none; /* Hidden by default */
|
|
position: fixed;
|
|
top: 10px;
|
|
right: 10px;
|
|
background-color: #333;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
z-index: 1003; /* Ensure it is above the modal content */
|
|
padding: 5px 10px; /* Add padding for a button-like appearance */
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
|
|
transition: background-color 0.3s; /* Smooth transition for hover effect */
|
|
}
|
|
|
|
#close-modal-button:hover {
|
|
background-color: #555; /* Darken on hover */
|
|
}
|
|
|
|
.utility-belt {
|
|
padding: 10px;
|
|
background-color: var(--bg-secondary);
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
/* Activity controls styling */
|
|
#activity-controls {
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
border-top: 1px solid var(--border-color);
|
|
transition: border-color 0.3s ease;
|
|
}
|
|
|
|
#activity-controls h3 {
|
|
margin-top: 0;
|
|
margin-bottom: 10px;
|
|
color: var(--text-primary);
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
#current-activity-info {
|
|
background-color: var(--bg-code);
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
margin-bottom: 10px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
#current-activity-info p {
|
|
margin: 0 0 10px 0;
|
|
color: var(--text-primary);
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
#activity-controls button {
|
|
background-color: var(--button-activity);
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
#cancel-activity-btn {
|
|
background-color: var(--button-danger);
|
|
}
|
|
|
|
#activity-controls button:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
#activity-select {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 5px;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
background-color: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
/* Model and voice select dropdowns styling */
|
|
#model-select, #voice-select, #model-select-mobile, #voice-select-mobile {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 5px;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
background-color: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
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 {
|
|
grid-template-columns: 1fr; /* Single column layout */
|
|
}
|
|
|
|
#rooms-list {
|
|
display: none; /* Hide the room list on mobile */
|
|
}
|
|
|
|
#hamburger-button {
|
|
display: block; /* Show the hamburger button on mobile */
|
|
}
|
|
}
|
|
|
|
/* Scrollbar styling for webkit browsers (Chrome, Safari, Edge) */
|
|
/* Light mode scrollbars */
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--bg-secondary);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #c1c1c1;
|
|
border-radius: 6px;
|
|
border: 2px solid var(--bg-secondary);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #a8a8a8;
|
|
}
|
|
|
|
/* Dark mode scrollbars */
|
|
[data-theme="dark"] ::-webkit-scrollbar-track {
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
[data-theme="dark"] ::-webkit-scrollbar-thumb {
|
|
background: #4a4a4a;
|
|
border: 2px solid var(--bg-secondary);
|
|
}
|
|
|
|
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
|
|
background: #5a5a5a;
|
|
}
|
|
|
|
/* Scrollbar styling for Firefox */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #c1c1c1 var(--bg-secondary);
|
|
}
|
|
|
|
[data-theme="dark"] * {
|
|
scrollbar-color: #4a4a4a var(--bg-secondary);
|
|
}
|
|
|
|
/* Room tabs styling */
|
|
#room-tabs {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0;
|
|
margin-bottom: 15px;
|
|
border-bottom: 2px solid var(--border-color);
|
|
}
|
|
|
|
.room-tab {
|
|
padding: 10px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
background-color: var(--bg-tertiary);
|
|
color: var(--text-secondary);
|
|
border: none;
|
|
border-bottom: 3px solid transparent;
|
|
transition: all 0.3s ease;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.room-tab:hover {
|
|
background-color: var(--highlight-bg);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.room-tab.active {
|
|
background-color: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
border-bottom-color: var(--button-primary);
|
|
font-weight: bold;
|
|
}
|