@charset "UTF-8";

:root,
[data-bs-theme=light] {
    --bs-link-color: #212529;
    --bs-link-color-rgb: 33, 37, 41;
    --bs-link-hover-color: #000;
    --bs-link-hover-color-rgb: 0, 0, 0;
}

[data-bs-theme=dark] {
    --bs-link-color: #DEE2E6;
    --bs-link-color-rgb: 222, 226, 230;
    --bs-link-hover-color: #fff;
    --bs-link-hover-color-rgb: 255, 255, 255;
}

[data-bs-theme=light] .card {
    --bs-card-bg: #eee;
}

[data-bs-theme=dark] .card {
    --bs-card-bg: #2d3339;
}

.btn-primary {
    --bs-btn-bg: #d50f2e;
    --bs-btn-border-color: #a70c23;
    --bs-btn-hover-bg: #ee1132;
    --bs-btn-hover-border-color: #bf0d28;
    --bs-btn-active-bg: #e60022;
    --bs-btn-active-border-color: #b3001b;
    --bs-btn-disabled-bg: #8f565f;
    --bs-btn-disabled-border-color: #503035;
}

.btn-outline-primary {
    --bs-btn-color: #d50f2e;
    --bs-btn-border-color: #d50f2e;
    --bs-btn-hover-bg: #ee1132;
    --bs-btn-hover-border-color: #ee1132;
    --bs-btn-active-bg: #e60022;
    --bs-btn-active-border-color: #e60022;
    --bs-btn-disabled-color: #8f565f;
    --bs-btn-disabled-border-color: #8f565f;
}

.pagination {
    --bs-pagination-active-bg: #e60022;
    --bs-pagination-active-border-color: #b3001b;
}

.table-auto-width {
    width: auto;
}

h1 {
    margin-top: 0.5em;
}

.nav-item:hover {
    background-color: var(--bs-secondary-bg);
}

@media (min-width: 992px) {
    .modal-xxl {
        --bs-modal-width: 800px;
    }
}
@media (min-width: 1200px) {
    .modal-xxl {
        --bs-modal-width: 1140px;
    }
}
@media (min-width: 1600px) {
    .modal-xxl {
        --bs-modal-width: 1540px;
    }
}