﻿.admin-toolbar {
    background-color: #f8f9fa;
    overflow-x: auto;
}

#paintOverlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none; /* shown via JS */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(33, 37, 41, 0.35);
    color: #fff;
    /* make it feel like the refresh overlay (blocks interaction) */
    pointer-events: auto;
}

.report-link {
    text-decoration: none;
    color: #1A80C8;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    box-sizing: border-box;
}

    .report-link:hover {
        text-decoration: underline;
    }

    .report-link.active {
        font-weight: bold;
        color: #1A80C8;
        border-bottom: 2px solid #1A80C8;
    }

    .report-link:focus-visible {
        outline: 2px solid #1A80C8;
        outline-offset: 2px;
        text-decoration: none;
    }

.last-refresh {
    white-space: nowrap;
    margin-left: 1rem;
}

.no-wrap {
    white-space: nowrap;
    flex-shrink: 0;
}

.no-wrap-ellipsis {
    display: inline-block;
    max-width: 260px; /* adjust per column */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

#unconfirmedList {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* Smaller font size for table */
table.table-sm {
    font-size: 1 rem; /* smaller than default */
}

    /* Reduce vertical padding in table cells */
    table.table-sm td,
    table.table-sm th {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    /* Optional: reduce row height by lowering line-height */
    table.table-sm tr {
        line-height: 1.1;
    }

/* Optional: reduce card padding for tighter look */
.card-body {
    padding: 0.75rem;
}

#sectionRounds canvas {
    max-height: 300px;
}

#courseFolderTable thead th {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

#courseFolderTable th,
#courseFolderTable td {
    vertical-align: middle;
}

    #courseFolderTable th:nth-last-child(2),
    #courseFolderTable th:last-child,
    #courseFolderTable td:nth-last-child(2),
    #courseFolderTable td:last-child {
        text-align: center;
    }

#courseFolderTable tbody tr.selectable-row {
    cursor: pointer;
}

#courseFolderTable tbody tr.row-selected {
    background: rgba(26,128,200,.12);
    outline: 2px solid rgba(26,128,200,.35);
}

.copy-btn {
    padding: 0 !important;
    line-height: 1 !important;
    min-height: 0;
}

    .copy-btn i {
        font-size: 0.9rem;
    }

#tblLicenseKeyWithMultiplePlayerKeysBody td,
#tblLicenseKeyWithMultiplePlayerKeysBody td span,
#tblPlayerWithMultiplePlayerKeysBody td,
#tblPlayerWithMultiplePlayerKeysBody td span,
#tblPlayerKeyWithMultipleLicenseKeysBody td,
#tblPlayerKeyWithMultipleLicenseKeysBody td span,
#tblPlayerKeyWithMultiplePlayerssBody td,
#tblPlayerKeyWithMultiplePlayerssBody td span {
    vertical-align: middle;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}