/* scoreboard-tour.css — tour overlay + tooltip styles. Themed to match
   MudBlazor dark theme (Primary #1e3a5f, Secondary #ea580c). Loaded
   globally via App.razor.
*/

#sbt-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none; /* mask divs do the click-blocking themselves */
    z-index: 99998;
}

#sbt-overlay > div {
    position: fixed;
    background: rgba(0, 0, 0, 0.72);
    pointer-events: auto;
}

#sbt-highlight {
    background: transparent;
    pointer-events: none;
    box-shadow:
        0 0 0 2px #ea580c,
        0 0 0 6px rgba(234, 88, 12, 0.25),
        0 0 24px rgba(234, 88, 12, 0.55);
    border-radius: 6px;
    transition: top 0.15s ease, left 0.15s ease, width 0.15s ease, height 0.15s ease;
}

#sbt-tooltip {
    position: fixed;
    z-index: 99999;
    max-width: 360px;
    min-width: 280px;
    pointer-events: auto;
}

.sbt-card {
    background: #1e1e1e;
    color: #fff;
    border: 1px solid rgba(234, 88, 12, 0.4);
    border-radius: 8px;
    padding: 14px 16px 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 24px rgba(234, 88, 12, 0.15);
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: 14px;
}

.sbt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sbt-counter {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.sbt-close {
    background: transparent;
    color: #999;
    border: 0;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}
.sbt-close:hover { color: #fff; }

.sbt-title {
    font-size: 16px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 6px;
}

.sbt-body {
    font-size: 14px;
    line-height: 1.45;
    color: #ddd;
    margin-bottom: 14px;
}
.sbt-body b { color: #fff; }

.sbt-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.sbt-btn {
    background: transparent;
    color: #ccc;
    border: 1px solid #444;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
}
.sbt-btn:hover { border-color: #888; color: #fff; }

.sbt-btn.sbt-primary {
    background: #ea580c;
    color: #fff;
    border-color: #ea580c;
}
.sbt-btn.sbt-primary:hover {
    background: #f97316;
    border-color: #f97316;
}
