:root {
    --bg-color: #ffffff;
    --sidebar-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --accent: #00E599;
    --border: #e2e8f0;
    --input-bg: #ffffff;
    --modal-overlay: rgba(15, 23, 42, 0.4);
    --font-family: 'Inter', sans-serif;
}

body.dark {
    --bg-color: #000000;
    --sidebar-bg: #0A0A0A;
    --card-bg: #0A0A0A;
    --text-primary: #EDEDED;
    --text-secondary: #888888;
    --accent: #00E599;
    --border: #222222;
    --input-bg: #0F0F0F;
    --modal-overlay: rgba(0, 0, 0, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
    transition: background 0.3s ease;
}

.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Sidebar */
.sidebar {
    width: 380px;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 600px;
    background: radial-gradient(circle at top right, rgba(0, 229, 153, 0.05), transparent 70%);
    pointer-events: none;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.icon-btn {
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
}

.icon-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.status-chip {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-chip .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot.online {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.dot.offline {
    background: #F5A623;
    animation: pulse 2s infinite;
}

.status-indicator .text {
    font-size: 0.65rem;
    font-weight: 900;
    font-family: monospace;
    letter-spacing: -0.05em;
}

.status-indicator .text.online { color: var(--accent); }
.status-indicator .text.offline { color: #F5A623; }

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
}

.sidebar-content::-webkit-scrollbar { display: none; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    font-weight: 700;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.label-row label {
    margin-bottom: 0;
}

.icon-link-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
}

.icon-link-btn:hover { color: var(--accent); }
.icon-link-btn i { width: 14px; height: 14px; }

.text-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.course-item {
    background: var(--input-bg);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.course-item:hover {
    border-color: rgba(0, 229, 153, 0.3);
}

.course-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
}

.course-info a {
    font-size: 0.65rem;
    color: var(--accent);
    text-decoration: none;
}

.delete-btn {
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    opacity: 0;
}

.course-item:hover .delete-btn {
    opacity: 1;
}

.delete-btn:hover {
    color: #ef4444;
}

/* Pairing View */
.pairing-view {
    text-align: center;
    padding: 1rem 0;
}

.qr-container {
    background: white;
    width: 240px;
    height: 240px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-placeholder {
    color: #e2e8f0;
    width: 64px;
    height: 64px;
}

#qr-image {
    width: 220px;
    height: 220px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.75rem;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.pairing-view h3 {
    margin-bottom: 0.5rem;
}

.pairing-view p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.select-wrapper {
    position: relative;
}

select, textarea, input[type="text"], input[type="url"], input[type="date"] {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

select:focus, textarea:focus, input:focus {
    border-color: var(--accent);
}

select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    color: var(--text-secondary);
}

textarea {
    height: 180px;
    resize: none;
    line-height: 1.6;
}

.primary-btn {
    width: 100%;
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
    padding: 0.9rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.primary-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.config-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.main-section {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.course-list-horizontal {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0.5rem; /* Added vertical padding */
    margin-top: 0.5rem;   /* Added margin to push away from header line */
}

.course-list-horizontal::-webkit-scrollbar { height: 4px; }
.course-list-horizontal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.course-chip {
    background: var(--input-bg);
    border: 1px solid var(--border);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.course-chip:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.course-label {
    color: var(--text-primary);
}

.chip-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-left: 1px solid var(--border);
    padding-left: 0.75rem;
}

.chip-actions button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    padding: 0;
}

.chip-actions button i {
    width: 14px;
    height: 14px;
}

.chip-actions .edit-btn:hover { color: var(--accent); }
.chip-actions .delete-btn:hover { color: #ff4d4d; }

.broadcast-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.broadcast-controls textarea {
    flex-grow: 1;
    min-height: 80px;
    resize: none;
}

.broadcast-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.link-btn-small {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.link-btn-small:hover { color: var(--accent); border-color: var(--accent); }

.status-badge-inline {
    background: rgba(0, 229, 153, 0.1);
    color: var(--accent);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.primary-btn-wide {
    width: 100%;
    background: var(--accent);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem;
    border-radius: 0.75rem;
    font-weight: 900;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 229, 153, 0.2);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pairing-view {
    padding: 1rem 0;
}

.primary-btn-wide:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 229, 153, 0.3);
}

.mb-4 { margin-bottom: 1rem; }

.locked-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--input-bg);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.group-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashed-btn {
    width: 100%;
    background: var(--input-bg);
    border: 1px dashed var(--border);
    color: var(--text-secondary);
    padding: 0.6rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.dashed-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.dashed-btn i { width: 14px; height: 14px; }

.group-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.action-btn-wide {
    width: 100%;
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 229, 153, 0.2);
}

.link-btn {
    width: 100%;
    background: none;
    border: 1px solid var(--border);
    color: var(--accent);
    padding: 0.6rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mt-6 { margin-top: 1.5rem; }

.help-text {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-family: monospace;
}

.primary-btn:disabled {
    background: var(--border);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.secondary-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
}

.secondary-btn:hover {
    color: #ef4444;
}

/* Main Content Area */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.upcoming-section {
    min-height: 340px;
    height: auto;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}

.content-header {
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem; /* Added margin to push content down */
}

.content-header h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-header h2 i {
    color: var(--accent);
    width: 16px;
    height: 16px;
}

.action-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.action-btn i {
    color: var(--accent);
    width: 14px;
    height: 14px;
}

.upcoming-grid {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.upcoming-card {
    width: 300px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem; /* Reverting to standard padding but with better containment */
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Added gap between sections */
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    min-height: 200px; /* Ensure a minimum size without clipping */
}

.upcoming-card:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.upcoming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 153, 0.3), transparent);
}

.card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.card-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.card-top .date {
    font-size: 0.7rem;
    font-family: monospace;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.times-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-tag {
    background: var(--input-bg);
    border: 1px solid var(--border);
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-family: monospace;
    color: var(--text-secondary);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Push to bottom naturally */
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.slots-badge {
    color: var(--accent);
    font-size: 0.65rem;
    font-family: monospace;
    font-weight: 900;
    background: rgba(0, 229, 153, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(0, 229, 153, 0.2);
}

.broadcast-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    flex-shrink: 0; /* Prevent button from shrinking */
}

/* Live Section */
.live-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge {
    background: var(--input-bg);
    border: 1px solid var(--border);
    padding: 0.2rem 0.5rem;
    border-radius: 0.4rem;
    font-family: monospace;
    font-size: 0.8rem;
}

.roster-container {
    flex: 1;
    padding: 1.5rem 2rem;
    overflow-y: auto;
}

.roster-header {
    display: flex;
    padding: 0 1rem 1rem;
    font-size: 0.65rem;
    font-family: monospace;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.col-pos { width: 60px; }
.col-player { flex: 1; }
.col-status { width: 120px; text-align: right; }

.roster-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roster-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.roster-item:hover {
    border-color: var(--text-secondary);
    background: var(--input-bg);
}

.player-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.player-info .name {
    font-weight: 700;
}

.player-info .handle {
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--text-secondary);
}

.status-label {
    background: rgba(0, 229, 153, 0.1);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
    gap: 1.5rem;
}

.empty-state i {
    width: 32px;
    height: 32px;
    opacity: 0.3;
}

.pulse {
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--modal-overlay);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: var(--card-bg);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 400px;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions button {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--border);
}

.cancel-btn {
    background: var(--input-bg);
    color: var(--text-primary);
}

.save-btn {
    background: var(--accent);
    color: #000;
    border: none !important;
}

.hidden { display: none !important; }

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

/* --- Responsiveness --- */

@media (max-width: 1024px) {
    .sidebar {
        width: 300px;
    }
}

@media (max-width: 768px) {
    body {
        overflow: auto;
    }

    .app-container {
        flex-direction: column;
        height: auto;
    }

    .sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
    }

    .sidebar-header {
        margin-bottom: 1rem;
    }

    .status-chip {
        margin-bottom: 1rem;
    }

    .content {
        overflow: visible;
        height: auto;
    }

    .upcoming-section {
        height: auto;
    }

    .upcoming-grid {
        padding: 1rem;
        gap: 1rem;
    }

    .upcoming-card {
        width: 280px;
    }

    .content-header {
        padding: 1rem 1.5rem;
    }

    .live-section {
        padding-bottom: 2rem;
    }

    .roster-header {
        padding: 0.75rem 1rem;
        font-size: 0.6rem;
    }

    .roster-item {
        padding: 0.75rem 1rem;
    }

    /* Modals */
    .modal {
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .header-actions button {
        width: 100%;
        justify-content: center;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .brand h1 {
        font-size: 1.25rem;
    }

    .course-chip {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Preference List Styles */
.preference-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 2rem;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideIn 0.3s ease-out;
}

.preference-chip.rank-1 {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.preference-chip .vote-count {
    background: var(--accent-primary);
    color: #000;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.pulse-vote {
    animation: pulseVote 0.5s ease-out;
}

@keyframes pulseVote {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px var(--accent-primary); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.course-pill {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: 0.5rem;
}
