.table {
    --bs-table-bg: #0d0d0d;
}

:root {
    --bs-body-bg: #0d0d0d;
    --bs-tertiary-bg: #1b1b1b;
}

html {
    position: relative;
    min-height: 100%;
}

html,
body {
    font-size: 14px;
    font-family: Lato;
    background-color: black;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: bottom !important;
    background-attachment: fixed !important;
}

.main-content {
    padding-top: 56px;
}

.navbar {
    padding-left: calc(100vw - 100%) !important;
    padding-right: 0 !important;
}

@media (min-width: 768px) {
    html,
    body {
        font-size: 16px;
    }

    .main-content {
        padding-top: 54px;
    }
}

.highlight {
    color: #f3c94a !important;
}

.highlight:hover {
    color: #f5d980 !important;
}

.active {
    color: #fff !important;
}

.bg-dark {
    background-color: #0d0d0d !important;
}

.bg-dark-highlighted {
    background-color: #1b1b1b !important;
}

.cursor-pointer {
    cursor: pointer;
}

.border-transparent {
    border-color: transparent !important;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 40px;
    padding-left: calc(100vw - 100%);
}

@media (max-width: 576px) {
    .tooltip {
        display: none !important;
    }
}

.sale-badge-navbar {
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    animation: saleFloat 2s ease-in-out infinite;
}

.sale-badge-navbar i {
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes saleFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}
