* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px var(--shadow-color);
    transition: all 0.3s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.night-mode-btn {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.night-mode-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.header h1 {
    color: var(--accent-color);
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    color: var(--text-secondary);
    font-size: 1.1em;
}

.auth-section {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px var(--shadow-color);
    text-align: center;
}

.login-btn {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

#userTitle {
    font-size: 0.9em;
    font-style: italic;
    margin-top: 2px;
    color: var(--text-muted);
    font-weight: bold;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.nav-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.username {
    font-size: 1.1em;
    font-weight: 600;
}

.user-rank {
    font-size: 0.9em;
    color: var(--text-secondary);
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.logout-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.main-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.request-form {
    flex: 0 0 auto;
    min-width: 400px;
    height: fit-content;
    align-self: flex-start;
}

.requests-list {
    flex: 1;
}

.request-form, .requests-list {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px var(--shadow-color);
}

.section-title {
    color: var(--accent-color);
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.request-item {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.request-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.request-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.request-user {
    font-weight: 600;
    color: #764ba2;
}

.request-time {
    color: #888;
    font-size: 0.9em;
}

.request-url {
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9em;
    margin: 10px 0;
    word-break: break-all;
}

.request-url a {
    color: #667eea;
    text-decoration: none;
}

.request-url a:hover {
    text-decoration: underline;
}

.request-message {
    color: #666;
    line-height: 1.4;
}

.admin-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.admin-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.admin-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.delete-btn {
    background: #e74c3c;
    color: white;
}

.delete-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.approve-btn {
    background: #27ae60;
    color: white;
}

.approve-btn:hover {
    background: #229954;
    transform: translateY(-1px);
}

.send-message-btn {
    background: #f39c12;
    color: white;
}

.send-message-btn:hover {
    background: #e67e22;
    transform: translateY(-1px);
}

.toggle-btn {
    background: #3498db;
    color: white;
}

.toggle-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.toggle-btn.active {
    background: #27ae60;
}

.settings-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.setting-label {
    font-weight: 600;
    color: #555;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #27ae60;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.timestamp-hover {
    cursor: help;
    position: relative;
}

.timestamp-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    white-space: nowrap;
    z-index: 1000;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.timestamp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.timestamp-hover:hover .timestamp-tooltip {
    opacity: 1;
}

.error {
    background: #ffe6e6;
    color: #d63031;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #d63031;
}

.success {
    background: #e6ffe6;
    color: #00b894;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #00b894;
}

.hidden {
    display: none;
}

/* New button styles for osu!direct and beatmap page */
.beatmap-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.osudirect-btn {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.osudirect-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.beatmap-page-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.beatmap-page-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.footer p {
    color: #666;
    font-size: 1em;
    margin: 0;
}

.footer a {
    color: #764ba2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #667eea;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .request-form {
        min-width: auto;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .container {
        padding: 10px;
    }
    
    .beatmap-actions {
        flex-direction: column;
    }
    
    .beatmap-actions .osudirect-btn,
    .beatmap-actions .beatmap-page-btn {
        width: 100%;
        justify-content: center;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Mobile-optimized request cards */
    .request-item {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    
    .request-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 8px;
    }
    
    .request-user {
        font-size: 0.85em;
        font-weight: 600;
        word-break: break-word;
    }
    
    .request-time {
        font-size: 0.75em;
        color: #999;
    }
    
    .request-url {
        font-size: 0.75em;
        padding: 6px 8px;
        margin: 8px 0;
        word-break: break-all;
        overflow-wrap: break-word;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 4px;
    }
    
    .request-message {
        font-size: 0.85em;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
        margin: 8px 0;
        padding: 8px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 4px;
    }
    
    /* Beatmap info mobile optimization */
    .beatmap-info {
        padding: 8px;
        margin: 8px 0;
        border-radius: 6px;
    }
    
    .beatmap-info > div {
        flex-direction: column;
        gap: 10px;
    }
    
    .beatmap-info img {
        width: 50px !important;
        height: 50px !important;
        align-self: center;
    }
    
    .beatmap-title {
        font-size: 0.95em;
        font-weight: 600;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 2px;
    }
    
    .beatmap-artist {
        font-size: 0.85em;
        word-break: break-word;
        overflow-wrap: break-word;
        margin-bottom: 6px;
    }
    
    .beatmap-stats {
        font-size: 0.75em;
        text-align: left;
        margin-bottom: 6px;
    }
    
    .beatmap-details {
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .difficulty-badge,
    .status-badge,
    .gamemode-text {
        font-size: 0.65em;
        padding: 2px 4px;
        margin-right: 3px;
        margin-bottom: 2px;
        border-radius: 3px;
    }
    
    .tag-badge {
        font-size: 0.65em;
        padding: 2px 4px;
        margin-right: 2px;
        margin-bottom: 2px;
        border-radius: 3px;
        display: inline-block;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Tag container for better stacking */
    .beatmap-info div[style*="margin-top: 8px"] {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .beatmap-stats-secondary {
        font-size: 0.7em;
        margin-top: 4px;
    }
    
    .mapper-info {
        font-size: 0.75em;
        margin-bottom: 4px;
    }
    
    /* Action buttons mobile optimization */
    .beatmap-actions {
        margin-top: 8px;
        gap: 6px;
    }
    
    .osudirect-btn,
    .beatmap-page-btn {
        padding: 8px 12px;
        font-size: 0.8em;
        border-radius: 6px;
        text-align: center;
    }
    
    /* Admin controls mobile optimization */
    .admin-controls {
        flex-direction: column;
        gap: 6px;
        margin-top: 10px;
    }
    
    .admin-btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.85em;
        border-radius: 6px;
    }
    
    /* Additional mobile improvements */
    .section-title {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.9em;
        padding: 10px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* Night Mode Styles */
:root {
    --bg-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-secondary: rgba(255, 255, 255, 0.95);
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: #888;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --accent-color: #764ba2;
    --accent-gradient: linear-gradient(45deg, #667eea, #764ba2);
    --success-color: #00b894;
    --error-color: #d63031;
}

body.night-mode {
    --bg-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --bg-secondary: rgba(30, 30, 50, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #888;
    --border-color: #444;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --accent-color: #667eea;
    --accent-gradient: linear-gradient(45deg, #667eea, #764ba2);
    --success-color: #00d4aa;
    --error-color: #ff6b6b;
}

body.night-mode {
    background: var(--bg-primary);
    color: var(--text-primary);
}

body.night-mode .header,
body.night-mode .auth-section,
body.night-mode .request-form,
body.night-mode .requests-list,
body.night-mode .admin-panel,
body.night-mode .footer {
    background: var(--bg-secondary);
}

body.night-mode .header h1 {
    color: var(--accent-color);
}

body.night-mode .header p,
body.night-mode .section-title {
    color: var(--text-secondary);
}

body.night-mode .form-group label {
    color: var(--text-secondary);
}

body.night-mode .form-group input,
body.night-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color);
    color: var(--text-primary);
}

body.night-mode .form-group input:focus,
body.night-mode .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

body.night-mode .request-item {
    background: rgba(102, 126, 234, 0.1);
    border-left-color: var(--accent-color);
}

body.night-mode .request-user {
    color: var(--accent-color);
}

body.night-mode .request-time {
    color: var(--text-muted);
}

body.night-mode .request-url {
    background: rgba(255, 255, 255, 0.1);
}

body.night-mode .request-url a {
    color: var(--accent-color);
}

body.night-mode .request-message {
    color: var(--text-secondary);
}



body.night-mode .setting-label {
    color: var(--text-secondary);
}

body.night-mode .setting-item {
    background: rgba(255, 255, 255, 0.1);
}

body.night-mode .settings-panel {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
}

body.night-mode .admin-panel {
    background: var(--bg-secondary);
}

body.night-mode .requests-list {
    background: var(--bg-secondary);
}

body.night-mode .admin-panel > div[style*="background: rgba(102, 126, 234, 0.1)"] {
    background: rgba(102, 126, 234, 0.2) !important;
    color: var(--text-secondary);
}

body.night-mode .footer p {
    color: var(--text-secondary);
}

body.night-mode .footer a {
    color: var(--accent-color);
}

body.night-mode .night-mode-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

body.night-mode .night-mode-btn:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

body.night-mode .nav-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

body.night-mode .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

body.night-mode .user-details .username {
    color: var(--text-primary);
}

body.night-mode .user-details .user-rank {
    color: var(--text-secondary);
}

body.night-mode #targetUserIdInput {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color);
    color: var(--text-primary);
}

body.night-mode #targetUserIdInput:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Beatmap Information Styles */
.beatmap-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #667eea;
}

.beatmap-title {
    color: #333;
}

.beatmap-artist {
    color: #666;
}

.beatmap-stats {
    color: #888;
}

.beatmap-details {
    color: #777;
}

.difficulty-badge {
    background: rgba(102, 126, 234, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
}

.status-badge {
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 600;
}

/* Beatmap status colors */
.status-badge.ranked {
    background: #b3ff66;
    color: #2c3e50;
}

.status-badge.qualified {
    background: #66ccff;
    color: #2c3e50;
}

.status-badge.loved {
    background: #ff66ab;
    color: white;
}

.status-badge.pending {
    background: #ffd966;
    color: #2c3e50;
}

.status-badge.wip {
    background: #ff9966;
    color: white;
}

.status-badge.graveyard {
    background: #000000;
    color: white;
}

/* Gamemode icons */
.gamemode-text {
    margin-right: 8px;
    font-size: 0.8em;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.gamemode-text.osu {
    background-color: #ff6b9d;
    color: white;
}

.gamemode-text.taiko {
    background-color: #ff9b4a;
    color: white;
}

.gamemode-text.fruits {
    background-color: #4ecdc4;
    color: white;
}

.gamemode-text.mania {
    background-color: #45b7d1;
    color: white;
}

.tag-badge {
    background: rgba(118, 75, 162, 0.1);
    color: #764ba2;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-right: 4px;
}

.beatmap-stats-secondary {
    color: #888;
}

/* Night Mode Beatmap Info */
body.night-mode .beatmap-info {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
}

body.night-mode .beatmap-title {
    color: var(--text-primary);
}

body.night-mode .beatmap-artist {
    color: var(--text-secondary);
}

body.night-mode .beatmap-stats {
    color: var(--text-muted);
}

body.night-mode .beatmap-details {
    color: var(--text-secondary);
}

body.night-mode .beatmap-stats-secondary {
    color: var(--text-muted);
}

/* Night mode gamemode text */
body.night-mode .gamemode-text.osu {
    background-color: #ff6b9d;
    color: white;
}

body.night-mode .gamemode-text.taiko {
    background-color: #ff9b4a;
    color: white;
}

body.night-mode .gamemode-text.fruits {
    background-color: #4ecdc4;
    color: white;
}

body.night-mode .gamemode-text.mania {
    background-color: #45b7d1;
    color: white;
}

/* Center the header title */
.header-top h1 {
    flex: 1;
    text-align: center;
}

/* Center the auth section */
.auth-section {
    text-align: center;
}

.user-info {
    justify-content: center;
}

/* Make textarea non-resizable */
.form-group textarea {
    resize: none;
}

/* Requester link styling */
.requester-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.requester-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

body.night-mode .requester-link {
    color: var(--text-color);
}

body.night-mode .requester-link:hover {
    color: var(--accent-color);
}

/* Admin OAuth status indicator */
.admin-oauth-status {
    font-size: 0.8em;
    margin-top: 2px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.admin-oauth-status.success {
    background-color: #27ae60;
    color: white;
}

.admin-oauth-status.pending {
    background-color: #f39c12;
    color: white;
}

body.night-mode .admin-oauth-status.success {
    background-color: #27ae60;
    color: white;
}

body.night-mode .admin-oauth-status.pending {
    background-color: #f39c12;
    color: white;
}

/* Queue Status Styles */
.queue-status-indicator {
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: 500;
}

.status-text, .queue-status-indicator span {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}
.status-open { color: #27ae60; background: rgba(39,174,96,0.1);}
.status-closed { color: #e74c3c; background: rgba(231,76,60,0.1);}

body.night-mode .status-open {
    color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.2);
}

body.night-mode .status-closed {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.2);
} 
