/* Minimal Layout for Readability Only */
/* =========================================
   THEME VARIABLES (Spotify-ish Dark Mode)
   ========================================= */
:root {
    --bg-dark: #121212;
    --bg-card: #181818;
    --bg-hover: #282828;
    --text-main: #FFFFFF;
    --text-muted: #B3B3B3;
    --accent-green: #1DB954;
    --accent-red: #E91429;
    --accent-orange: #FF9F00; /* Veto */
    --border-color: #333;
    --font-stack: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- LAYOUT UPDATE --- */
body {
    background-color: black;
    color: var(--text-main);
    font-family: var(--font-stack);
    margin: 0;
    height: 100vh;
    overflow: hidden; /* Prevent whole-page bounce */
    display: flex;
    flex-direction: column; /* Row 1: Header, Row 2: Content */
}

/* =========================================
   GAME BOARD LAYOUT (Index.cshtml)
   ========================================= */

/* 1. The Main Container */
.layout-grid {
    flex-grow: 1; /* Take all remaining height */
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    width: 100vw;
    overflow: hidden;
    background: #121212;
}
/* 2. Sidebars (Roster & History) - Make them scroll! */
.col-roster, .col-history, .col-stage {
    background: #000;
    padding: 15px;
    height: 100%; /* Relative to the flex-grown content area */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 3. The Center Stage - Fix the "Offscreen" issue */
/* 3. The Center Stage */
.col-stage {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0; /* <--- CHANGE THIS FROM 40px TO 0 */

    height: 100vh;
    overflow-y: auto;
    position: relative;
    background: radial-gradient(circle at center, #222 0%, #111 70%);
}

/* 4. Fix the Song List within the History Column */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Ensure it doesn't break the container */
    width: 100%;
    padding-bottom: 50px;
}

/* 5. Mobile Adjustments */
/* Benchmark 1: Mobile Viewer Experience */
@media (max-width: 768px) {
    .layout-grid {
        display: block !important;
        height: 100vh !important; /* On mobile, we take full screen since header is hidden  */
    }

    /* Hide the Library and the Drafting Stage */
    .col-roster,
    .col-stage,
    #app-header,
    .btn-ghost-reset {
        display: none !important;
    }

    /* Force the Final List (col-history) to be full screen */
    .col-history {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        padding: 15px !important;
        overflow-y: auto !important;
    }

    /* Make song titles easier to read on small screens */
    .track-primary {
        font-size: 1.2rem !important;
        white-space: normal !important; /* Allow wrapping */
    }
}

/* Header Area */
#app-header {
    grid-area: header;
    background: #111;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    z-index: 10;
}

/* --- COLUMN DEFINITIONS --- */

/* 1. LEFT COLUMN (Library) */
#col-library {
    grid-area: left;
    background-color: var(--bg-dark);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* CRITICAL: Stops column from expanding */
    height: 100%;
}
/* Ensure your HTML IDs match these columns, or just stick to the 3-col grid structure you had */

/* --- HEADER COMPONENTS --- */
.progress-container {
    flex-grow: 1;
    margin: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.progress-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
}

.progress-bar-bg {
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), #1ed760);
    width: 0%;
    transition: width 0.5s ease;
}

/* --- TIMER --- */
.timer-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #222;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #333;
}

.timer-display {
    font-family: 'Courier New', monospace; /* Digital Clock Vibe */
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    width: 60px;
    text-align: center;
}

    .timer-display.danger {
        color: #ff4444;
        animation: pulse-red 1s infinite;
    }

.btn-timer {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

    .btn-timer:hover {
        color: white;
    }

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
/* =========================================
   SHARED LAYOUT
   ========================================= */
.col {
    padding: 20px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    background-color: var(--bg-dark);
}

h2 {
    color: var(--text-main);
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scrollbar Styling for Lists */
/* Internal List Scroller */
.scroll-container {
    overflow-y: auto !important;
    flex-grow: 1;
    padding-bottom: 30px; /* Space for the last item */
}
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

/* =========================================
   LEFT: LIBRARY
   ========================================= */
#lib-search {
    background: #333;
    border: none;
    color: white;
    padding: 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    outline: none;
}

.library-item {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background 0.2s;
    cursor: pointer;
    border-left: 4px solid transparent;
}

    .library-item:hover {
        background-color: var(--bg-hover);
    }

    /* Status Colors */
    .library-item.status-drafted {
        border-left-color: var(--accent-green);
        opacity: 0.6;
    }

    .library-item.status-vetoed {
        border-left-color: var(--accent-red);
        opacity: 0.6;
    }

    .library-item.status-rejected {
        border-left-color: #555;
        opacity: 0.6;
    }

.lib-title {
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
}

.lib-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lib-status {
    font-size: 0.8rem;
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: bold;
}


 /* =========================================
   CENTER: STAGE (Streamlined Professional)
   ========================================= */
#col-stage {
    grid-area: center;
    background-color: #080808;
    border-right: 1px solid var(--border-color);
    padding: 0;
    /* Centering Logic */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically Center */
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Container limits width but keeps things centered */
.stage-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 40px; /* This handles the spacing now */
    text-align: center;
    box-sizing: border-box;
}

/* Typography */
.stage-hero-title {
    font-size: 3.5rem;
    font-weight: 300; /* Light/Thin font looks very professional */
    color: #fff;
    margin: 25px 0 10px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.stage-hero-artist {
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.stage-hero-meta {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.stage-nominator-badge {
    display: inline-block;
    border: 1px solid #333;
    padding: 5px 15px;
    border-radius: 20px;
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* The Player Frame */
.media-frame {
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin: 0 auto; /* Center it */
    max-width: 100%;
}

/* Minimal Voting Row */
.vote-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.vote-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transition: opacity 0.3s;
}

/* Dim other players when looking at one */
.vote-row:hover .vote-pill {
    opacity: 0.5;
}

.vote-row .vote-pill:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.pill-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pill-controls {
    display: flex;
    gap: 8px;
    background: #1a1a1a;
    padding: 5px;
    border-radius: 30px;
    border: 1px solid #333;
}

/* Refined Buttons */
.btn-minimal {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #444;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .btn-minimal:hover {
        background: #333;
        color: #fff;
    }

    /* Active States */
    .btn-minimal.yes.selected {
        background: #fff;
        color: #000;
        box-shadow: 0 0 15px rgba(255,255,255,0.3);
    }

    .btn-minimal.no.selected {
        background: #D32F2F;
        color: #fff;
    }

    .btn-minimal.veto.selected {
        background: #F57C00;
        color: #fff;
    }

/* Subtle Reset Button */
.btn-ghost-reset {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid #333;
    color: #444;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-ghost-reset:hover {
        border-color: #d32f2f;
        color: #d32f2f;
    }

/* =========================================
   RIGHT: FINAL LIST
   ========================================= */
.final-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #222;
}

.final-num {
    font-size: 1.5rem;
    font-weight: bold;
    color: #444;
    width: 40px;
}

.final-info strong {
    display: block;
    font-size: 1.1rem;
}

.final-info small {
    color: var(--text-muted);
}

/* =========================================
   UTILITIES & ANIMATIONS
   ========================================= */
.btn-confirm {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    width: 100%;
    transition: transform 0.2s;
}

    .btn-confirm:hover {
        transform: scale(1.02);
        background: #1ed760;
    }

.btn-reset {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #555;
    font-size: 1.5rem;
    cursor: pointer;
}

    .btn-reset:hover {
        color: var(--accent-red);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

/* --- NEW TRACK CARD STYLE (Shared) --- */
.track-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #222;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
}

    .track-card:hover {
        background-color: var(--bg-hover);
    }
.track-primary {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.track-secondary {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
}

/* Specific tweaks for Library Status items */
.track-card.status-unavailable {
    opacity: 0.6;
}

    .track-card.status-unavailable:hover {
        cursor: default;
        background: transparent;
    }


/* --- CLEAN IDLE SCREEN --- */
.stage-idle-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full Height */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
    text-align: center;
    width:100%;
}

.idle-icon {
    font-size: 4rem;
    color: #333;
    margin-bottom: 30px;
    animation: pulse 3s infinite;
}

.idle-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.idle-subtitle {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 1px;
}

.idle-player {
    color: var(--accent-green);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 2px;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

/* --- CUSTOM MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.modal-box {
    background: #181818;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.2s;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.modal-text {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-modal {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

    .btn-modal.confirm {
        background: var(--accent-green);
        color: black;
    }

    .btn-modal.cancel {
        background: transparent;
        color: #888;
        border: 1px solid #333;
    }

        .btn-modal.cancel:hover {
            border-color: #666;
            color: white;
        }

/* --- 3-TIER TRACK CARD LAYOUT --- */
.track-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px; /* Tight spacing between lines */
}

.track-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.track-artist {
    font-size: 1rem;
    font-weight: 500;
    color: #b3b3b3; /* Classic Spotify Grey */
}

.track-meta {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}
/* Status Badges */
.badge-result {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-consensus {
    color: #FFD700;
}
/* Gold */
.badge-auto {
    color: #007bff;
}
/* Blue */
.badge-accepted {
    color: var(--accent-green);
}

.badge-vetoed {
    color: var(--accent-red);
}

.badge-rejected {
    color: #555;
}

#col-final {
    grid-area: right;
    background-color: var(--bg-dark);
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* CRITICAL: Stops column from expanding */
    height: 100%;
}
/* --- SCROLLING LOGIC --- */
/* This class is applied to the list containers via JS */

.launch-btn {
    width: 220px;
    height: 180px;
    background: #0a0a0a;
    border: 2px solid #222;
    color: #444;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
}

    .launch-btn i {
        font-size: 2.5rem;
    }

    .launch-btn.active {
        border-color: #fff;
        color: #fff;
        background: #111;
        transform: scale(1.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }


.launch-btn {
    padding: 20px 30px;
    background: #111;
    border: 2px solid #333;
    color: #444;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
}

    .launch-btn.active {
        border-color: #fff;
        color: #fff;
        background: #222;
    }

/* =========================================
   FULL SCREEN CONSENSUS REVEAL
   ========================================= */

/* =========================================
   CONSENSUS CAROUSEL (Center Stage)
   ========================================= */
/* =========================================
   CONSENSUS CAROUSEL (Center Stage)
   ========================================= */

.consensus-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 90%);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center vertically */
    overflow: hidden;
}

/* --- HEADER --- */
.consensus-header {
    position: absolute;
    top: 40px;
    text-align: center;
    width: 100%;
    z-index: 5001;
}

.match-counter {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-top: 10px;
}

/* --- THE STAGE --- */
.consensus-stage {
    position: relative;
    width: 100%;
    max-width: 700px; /* Max width for the card */
    height: 440px; /* Fixed height area */
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* --- ANIMATIONS --- */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.slide-in {
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- LANDSCAPE CARD (Single) --- */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.flip-card-front {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    color: var(--accent-green);
    border: 1px solid #333;
    justify-content: center;
    align-items: center;
}

    .flip-card-front:hover {
        border-color: #FFD700;
        transform: scale(1.02);
        transition: all 0.3s;
    }

.flip-card-back {
    background: #000;
    transform: rotateY(180deg);
    border: 1px solid #333;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1); /* Golden Glow */
}

/* --- PLAYER CONTENT --- */
.card-player-container {
    flex-grow: 1;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
}

.card-badges-container {
    width: 100%;
    background: #080808;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #222;
}

/* --- REFINED BADGES (Wireframe, Lighter Font) --- */
.voter-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px; /* Rounded corners */
    font-size: 0.85rem;
    font-weight: 400; /* Lighter font */
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    /* Border/Color set via JS */
}

/* --- CONTROLS --- */
.consensus-controls {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 5002;
}

.btn-nav {
    background: rgba(255,255,255,0.1);
    border: 1px solid #444;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

    .btn-nav:hover {
        background: white;
        color: black;
    }

    .btn-nav:disabled {
        opacity: 0.2;
        cursor: default;
    }

/* Add to site.css */
#btn-next-action {
    transition: opacity 0.3s ease-in-out;
}

/* =========================================
   PRINTING / GAME SHEETS (FINAL FIX)
   ========================================= */

#printable-area {
    display: none;
}

@media print {
    /* 1. SCORCH EARTH: HIDE EVERYTHING */
    body > *:not(#printable-area) {
        display: none !important;
    }

    /* 2. RESET BODY */
    body {
        background: white !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    /* 3. SHOW PRINT AREA */
    #printable-area {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
    }

        /* 4. FORCE COLORS & VISIBILITY */
        #printable-area * {
            visibility: visible !important;
            color: black !important;
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }

        /* 5. EXCEPTIONS: TITLE BARS (Keep White Text) */
        #printable-area .title-bar,
        #printable-area .footer-header {
            color: white !important;
            background: black !important;
        }

        /* 6. EXCEPTIONS: GREY ELEMENTS */
        #printable-area .circle,
        #printable-area .circle-opt,
        #printable-area .album,
        #printable-area .sub-head {
            color: #666 !important;
        }

    /* --- LAYOUT STYLES --- */
    .print-sheet {
        width: 100%;
        min-height: 100vh;
        padding: 0.5in;
        box-sizing: border-box;
        page-break-after: always;
        font-family: 'Segoe UI', sans-serif;
    }

    .sheet-header {
        margin-bottom: 20px;
    }

    .header-top {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        border-bottom: 2px solid #000;
        padding-bottom: 10px;
    }

    .field {
        font-size: 12pt;
    }

    .label {
        font-weight: 800;
        margin-right: 5px;
    }

    .value {
        border-bottom: 1px dashed #000;
        padding: 0 10px;
        font-family: 'Courier New', monospace;
        font-weight: 600;
    }

    .title-bar {
        text-align: center;
        font-weight: 800;
        padding: 5px;
        font-size: 14pt;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .resource-tracker {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-bottom: 20px;
        padding: 10px;
        border: 2px solid #000;
        border-radius: 8px;
        background-color: #f4f4f4 !important;
    }

    .tracker-section {
        text-align: center;
    }

    .tracker-label {
        font-weight: 800;
        font-size: 8pt;
        margin-bottom: 5px;
    }

    .circles {
        display: flex;
        gap: 8px;
    }

    .circle {
        width: 24px;
        height: 24px;
        border: 2px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8pt;
    }

    .draft-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: auto;
    }

        .draft-table th {
            background: #ddd !important;
            border: 2px solid #000;
            padding: 5px;
            font-size: 9pt;
            font-weight: 800;
            text-align: center;
            vertical-align: bottom;
        }

    .col-song {
        text-align: left !important;
        width: 45%;
    }

    .sub-head {
        display: block;
        font-size: 6pt;
        margin-top: 2px;
    }

    .group-header td {
        background: #eee !important;
        border: 2px solid #000;
        border-bottom: 1px solid #000;
        padding: 4px 8px;
        text-align: left;
    }

    .artist {
        font-weight: 800;
        font-size: 10pt;
        text-transform: uppercase;
        margin-right: 10px;
    }

    .album {
        font-style: italic;
        font-size: 10pt;
    }

    .draft-table td {
        border: 1px solid #ccc;
        border-left: 2px solid #000;
        border-right: 2px solid #000;
        padding: 4px 6px;
        font-size: 10pt;
        vertical-align: middle;
    }

    .song-cell {
        font-weight: 600;
    }

    .box-cell, .opt-cell {
        text-align: center;
    }

    .box {
        width: 12px;
        height: 12px;
        border: 2px solid #000;
        margin: 0 auto;
    }

    .opt-group {
        display: flex;
        justify-content: center;
        gap: 4px;
    }

    .circle-opt {
        width: 14px;
        height: 14px;
        border: 1px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 6pt;
    }
}
    
  

