﻿.buzzer-option {
    border: 2px solid var(--tblr-border-color);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

    .buzzer-option:hover {
        border-color: var(--tblr-primary);
    }

    .buzzer-option.selected {
        border-color: var(--tblr-primary);
        box-shadow: 0 0 0 2px var(--tblr-primary);
    }

.venue-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--tblr-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s;
}

.venue-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s;
}

.list-group-item.active .venue-radio {
    border-color: var(--tblr-primary);
}

.list-group-item.active .venue-radio-dot {
    background: var(--tblr-primary);
}


.buzzer-option-modal {
    border: 2px solid var(--tblr-border-color);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

    .buzzer-option-modal:hover {
        border-color: var(--tblr-primary);
    }

    .buzzer-option-modal.selected {
        border-color: var(--tblr-primary);
        box-shadow: 0 0 0 2px var(--tblr-primary);
    }

#modal-start-game .modal-header {
    padding-right: 1rem;
}

#quiz-tabs .nav-link {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    gap: 0.5rem;
    display: flex;
    align-items: center;
}

    #quiz-tabs .nav-link .icon {
        width: 22px;
        height: 22px;
    }

@media (min-width: 2200px) {
    .col-ultrawide-2 {
        width: 16.666%;
        flex: 0 0 16.666%;
        max-width: 16.666%;
    }
}

@media (min-width: 1500px) and (max-width: 2199px) {
    .col-wide-4 {
        width: 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}
/*@media (max-width: 767px) {
    header.navbar {
        position: relative;*/ /* already sticky but needs this for child absolute */
    /*}

    .navbar-brand {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        display: flex;
        align-items: center;
        vertical-align:top;
    }
}*/

#quiz-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: none;
    margin-bottom: 1.5rem !important;
}

    #quiz-tabs .nav-item {
        flex: 1;
    }

    #quiz-tabs .nav-link {
        width: 100%;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        padding: 1.25rem 0.5rem;
        border-radius: 12px;
        border: 2px solid var(--tblr-border-color);
        font-weight: 600;
        transition: all 0.2s;
        background: var(--tblr-bg-surface);
    }

        #quiz-tabs .nav-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        #quiz-tabs .nav-link.active {
            border-color: #e62154;
            background: #e62154;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(230, 33, 84, 0.3);
        }

            #quiz-tabs .nav-link.active .icon {
                color: white;
            }

#modal-stripe-element {
    min-height: 40px;
    padding: 10px 12px;
}


.quiz-type-legend {
    display: flex;
    align-items: flex-end;
    width: 140px;
    height: 70px;
    border-radius: 8px;
    border: 2px solid white;
    background-size: cover;
    background-position: center;
    padding: 6px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

    .quiz-type-legend::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    }

    .quiz-type-legend span {
        position: relative;
        z-index: 1;
        color: white;
        font-size: 0.75rem;
        font-weight: 600;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }