/* TFT shared theme styles */

.tft-theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1050;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.tft-theme-toggle:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* NomHrs table refinement using Bootstrap CSS variables so it adapts to theme */
.tft-table-wrap {
    border: 1px solid var(--bs-border-color);
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(var(--bs-body-color-rgb), 0.08) inset;
}

.tft-table-wrap > .table {
    margin-bottom: 0;
}

/* Buy Me Coffee image stays bright in dark mode without losing contrast */
[data-bs-theme="dark"] .tft-bmc-img {
    filter: brightness(0.95);
}
