/* Основные стили для сайта ODP Site */
:root {
    --primary-color: #5cb85c;
    --secondary-color: #343a40;
    --accent-color: #007bff;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --danger-color: #d9534f;
    --warning-color: #ffc107;
    
    /* Переменные для темной темы */
    --background-color: #121212;
    --text-color: #e5e5e5;
    --card-bg: #1e1e1e;
    --navbar-bg: #1a1a1a;
    --navbar-color: #e5e5e5;
    --footer-bg: #1a1a1a;
    --footer-color: #e5e5e5;
    --border-color: #333333;
    --hover-bg: #333333;
    --muted-text: #adb5bd;
    --secondary-bg: #2d2d2d;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', Arial, sans-serif;
}

main {
    flex: 1;
}

/* Стили для навигации */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--navbar-bg) !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand .brand-icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Стили для карточек */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: var(--card-bg);
    border-color: #2d2d2d;
}

.card-header {
    border-bottom: none;
    padding: 1rem 1.25rem;
}

.card-title {
    margin-bottom: 0;
}

/* Стили для команд */
.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* Стили для таблиц */
.table {
    margin-bottom: 0;
    color: #e9ecef;
}

.table th {
    font-weight: 600;
    background-color: #1e1e1e;
    color: #e9ecef;
    border-color: #2d2d2d;
}

.table td {
    border-color: #2d2d2d;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Стили для кнопок */
.btn {
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn-outline-primary, .btn-outline-success {
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: white;
}

/* Стили для футера */
footer {
    margin-top: 2rem;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    background-color: var(--footer-bg);
    color: var(--footer-color);
}

footer a {
    text-decoration: none;
    color: #e9ecef !important;
}

footer a:hover {
    text-decoration: underline;
}

footer h5, 
footer p, 
footer .social-icons a, 
footer .list-unstyled li a, 
footer i.fab, 
footer i.fas {
    color: #e9ecef !important;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .team-image {
        max-width: 100%;
        height: auto;
    }
    
    .team-logo {
        max-width: 400px;
        max-height: 67px;
        width: 100%;
        height: auto;
        aspect-ratio: 6/1;
    }
    
    .placeholder-team {
        max-width: 400px;
        max-height: 67px;
        width: 100%;
        height: auto;
        aspect-ratio: 6/1;
        font-size: 18px;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.25rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .table th, .table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Стили для изображений команд */
.team-image {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-logo {
    max-width: 600px;
    max-height: 100px;
    width: 100%;
    height: auto;
    aspect-ratio: 6/1;
    object-fit: contain;
}

.placeholder-team {
    max-width: 600px;
    max-height: 100px;
    width: 100%;
    height: auto;
    aspect-ratio: 6/1;
    background-color: #2c3e50;
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Стили для имен команд */
.team-name {
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

/* Стили для команд Radiant и Dire */
.team-radiant {
    color: #5cb85c !important; /* Зеленый цвет для Radiant */
}

.team-dire {
    color: #d9534f !important; /* Красный цвет для Dire */
}

/* Стили для мобильной версии карточек */
.prediction-card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 15px;
    background-color: var(--card-bg);
}

.prediction-card-header {
    background-color: var(--navbar-bg) !important;
    color: var(--navbar-color);
    padding: 0.75rem 1rem;
}

.mobile-section {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--card-bg);
}

.mobile-section:last-child {
    border-bottom: none;
}

.team-vs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
}

.vs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    margin-top: -15px;
}

.vs-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ced4da !important;
}

.mobile-prediction-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.mobile-prediction-label {
    font-weight: 600;
    width: 40%;
    color: #e9ecef !important;
}

.mobile-prediction-value {
    text-align: right;
    width: 60%;
}

.section-title {
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #e9ecef !important;
    font-size: 1rem;
}

.percentage-label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #e9ecef !important;
}

.percentage-label strong {
    font-weight: 600;
    color: #e9ecef !important;
}

/* Стили для прогресс-баров (синергия и контр-пики) */
.progress-container {
    height: 10px;
    background-color: #2d2d2d !important;
    border-radius: 5px;
    position: relative;
    margin: 0.5rem 0;
    overflow: hidden;
}

.progress-marker {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.team-radiant-progress {
    position: absolute;
    height: 100%;
    background-color: #28a745 !important;
    left: 0;
    width: 0;
}

.team-dire-progress {
    position: absolute;
    height: 100%;
    background-color: #dc3545 !important;
    right: 0;
    width: 0;
}

/* Стили для отображения процентов под прогресс-барами в мобильной версии */
.mobile-stats-section-compact .d-flex.justify-content-between small {
    font-size: 0.75rem;
    color: #adb5bd !important;
    font-weight: 500;
}

/* Цвет для времени и бета-предсказаний */
.time-display, 
.beta-prediction-label, 
.neutral-text,
#last-update-time,
small strong,
.mobile-stats-title,
.stats-title-label {
    color: #e9ecef !important;
    font-weight: 500;
}

/* Заголовок страницы */
.page-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: #e9ecef;
    font-weight: 600;
    background-color: #121212 !important;
}

.page-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #5cb85c;
}

/* Стили для новой мобильной панели футера */
.mobile-footer {
    border-top: 1px solid var(--border-color);
    z-index: 100;
    background-color: var(--navbar-bg);
}

.mobile-footer a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    color: #e9ecef !important;
}

.mobile-footer a i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #e9ecef !important;
}

.mobile-footer a small {
    font-size: 0.7rem;
    color: #e9ecef !important;
}

/* Добавляем отступ для основного контента, чтобы он не перекрывался мобильным футером */
@media (max-width: 992px) {
    body {
        padding-bottom: 56px; /* Высота мобильного футера */
    }

    /* Основной футер на мобильных виден только когда пролистываем до конца */
    footer:not(.mobile-footer) {
        margin-bottom: 40px;
    }
}

/* Стили для индикатора автообновления */
.update-time {
    font-size: 0.8rem;
    color: #e9ecef !important;
}

/* Стили для компактного отображения команд в таблице */
.team-container-compact {
    min-width: 80px;
}

.team-name-compact {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    margin: 0 auto;
}

.team-image-compact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-logo-compact {
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.team-logo-compact:hover {
    transform: scale(1.1);
}

.placeholder-team-compact {
    transition: transform 0.2s ease;
}

.placeholder-team-compact:hover {
    transform: scale(1.1);
}

.vs-container-compact {
    opacity: 0.7;
}

/* Ограничиваем ширину колонки "Матч" */
.matches-table td:first-child {
    width: 280px;
    max-width: 280px;
    min-width: 260px;
}

.update-time {
    color: #95a5a6;
    font-size: 0.8rem;
}

/* Стили для вертикальной раскладки команд с увеличенными изображениями */
.team-container-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.team-image-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
}

.team-logo-large {
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    max-width: 600px;
    max-height: 100px;
    width: 100%;
    height: auto;
    aspect-ratio: 6/1;
    object-fit: cover;
}

.team-logo-large:hover {
    transform: scale(1.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
    z-index: 20;
    position: relative;
}

.placeholder-team-large {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    max-width: 600px;
    max-height: 100px;
    width: 100%;
    height: auto;
    aspect-ratio: 6/1;
    background-color: #2c3e50;
    color: #ecf0f1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}

.placeholder-team-large:hover {
    transform: scale(1.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
    z-index: 20;
    position: relative;
}

.vs-container-overlay {
    position: absolute;
    z-index: 10;
    background: rgba(0, 0, 0, 0.85) !important;
    border-radius: 18px;
    padding: 4px 10px;
    backdrop-filter: blur(3px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vs-container-overlay .vs-text {
    color: #fff !important;
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

/* Адаптация высоты строк таблицы для новой раскладки */
.table td.align-middle {
    vertical-align: middle !important;
    padding: 0.5rem;
}

/* Стили для темной темы */
body[data-theme="dark"] .vs-container-overlay {
    background: rgba(255, 255, 255, 0.9) !important;
}

body[data-theme="dark"] .vs-container-overlay .vs-text {
    color: #000 !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .team-logo-large {
        max-width: 400px;
        max-height: 67px;
        width: 100%;
        height: auto;
        aspect-ratio: 6/1;
    }
    
    .placeholder-team-large {
        max-width: 400px;
        max-height: 67px;
        width: 100%;
        height: auto;
        aspect-ratio: 6/1;
        font-size: 12px !important;
    }
    
    /* Убираем hover эффекты на мобильных */
    .team-logo-large:hover,
    .placeholder-team-large:hover {
        transform: none;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        filter: none;
        z-index: auto;
    }
    
    .vs-container-overlay {
        padding: 3px 8px !important;
    }
    
    .vs-container-overlay .vs-text {
        font-size: 0.8rem !important;
    }
    
    .team-name-compact {
        font-size: 0.75rem !important;
    }
    
    .matches-table td:first-child {
        width: 200px;
        max-width: 200px;
        min-width: 180px;
    }
    
    /* Компактные стили для мобильной версии */
    .mobile-section {
        padding: 0.75rem;
    }
    
    .prediction-card {
        margin-bottom: 12px;
    }
    
    .mobile-prediction-compact {
        padding: 4px 0;
    }
}

/* Стили для компактной мобильной версии */
.mobile-prediction-compact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-prediction-label-compact {
    font-weight: 600;
    font-size: 0.8rem;
    color: #e9ecef !important;
    opacity: 0.9;
}

.mobile-prediction-value-compact {
    font-size: 0.85rem;
    font-weight: 500;
}

.mobile-stats-section-compact {
    margin-bottom: 8px;
}

.mobile-stats-title-compact {
    font-size: 0.85rem;
    color: #e9ecef;
    font-weight: 500;
    margin-bottom: 4px;
}

.mobile-stats-title-compact .text-success {
    color: #28a745 !important;
    font-weight: 600;
}

.mobile-stats-title-compact .text-danger {
    color: #dc3545 !important; 
    font-weight: 600;
}

.mobile-stats-title-compact .text-muted {
    color: #adb5bd !important;
    font-weight: 500;
}

/* Дополнительные правила для форсирования цветов в мобильной версии */
.mobile-stats-section-compact small.text-success {
    color: #28a745 !important;
}

.mobile-stats-section-compact small.text-danger {
    color: #dc3545 !important;
}

.mobile-stats-section-compact small.text-muted {
    color: #adb5bd !important;
}

/* Компактная мобильная информация о времени */
.mobile-time-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mobile-time-info .mobile-prediction-label-compact {
    margin: 0;
}

.mobile-time-info .time-display {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Десктопные карточки */
.card-body-desktop {
    background: var(--card-bg);
    border-radius: 0 0 8px 8px;
}

.teams-section-desktop {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.team-vs-container-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.team-container-desktop {
    flex: 1;
    text-align: center;
}

.team-image-desktop {
    max-width: 100%;
    height: auto;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-desktop {
    max-width: 600px;
    max-height: 100px;
    width: 100%;
    height: auto;
    aspect-ratio: 6/1;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-logo-desktop:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.placeholder-team-desktop {
    max-width: 600px;
    max-height: 100px;
    width: 100%;
    height: auto;
    aspect-ratio: 6/1;
    background-color: #2c3e50;
    color: #ecf0f1;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placeholder-team-desktop:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.team-name-desktop {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vs-container-desktop {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-text-desktop {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.prediction-result-section-desktop {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.prediction-box-desktop,
.result-box-desktop {
    text-align: center;
}

.prediction-label-desktop,
.result-label-desktop {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 5px;
}

.prediction-value-desktop {
    font-weight: 600;
    font-size: 0.95rem;
}

.beta-prediction-desktop {
    font-size: 0.75rem;
    color: #e9ecef !important;
}

.beta-prediction-desktop .text-success {
    color: #28a745 !important;
}

.beta-prediction-desktop .text-danger {
    color: #dc3545 !important;
}

.beta-prediction-desktop .text-secondary {
    color: #adb5bd !important;
}

.result-value-desktop .badge {
    font-size: 0.75rem;
}

.stats-section-desktop {
    padding-top: 5px;
}

.stat-item-desktop {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 10px;
}

.stat-header-desktop {
    margin-bottom: 8px;
}

.stat-title-desktop {
    font-weight: 600;
    color: var(--text-color);
}

.progress-container-desktop {
    position: relative;
    height: 12px;
    background: var(--secondary-bg);
    border-radius: 6px;
    margin-bottom: 5px;
    overflow: hidden;
}

.progress-marker-desktop {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
    z-index: 1;
}

.team-radiant-progress-desktop {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: width 0.3s ease;
}

.team-dire-progress-desktop {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #dc3545, #fd7e14);
    transition: width 0.3s ease;
}

.time-display-compact {
    font-size: 0.75rem;
    color: var(--muted-text);
    text-align: right;
}

/* Адаптивность для контейнера карточек */
#desktop-cards-container {
    margin-top: 20px;
}

#mobile-cards-container {
    margin-top: 20px;
}

@media (min-width: 768px) {
    #desktop-cards-container {
        display: block !important;
    }
    
    #mobile-cards-container {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    #desktop-cards-container {
        display: none !important;
    }
    
    #mobile-cards-container {
        display: block !important;
    }
}

/* Стили для индикатора победителя */
.winner-indicator {
    position: absolute;
    top: -5px;
    font-size: 1.5em;
    z-index: 10;
    animation: winner-glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
}

.winner-indicator.radiant-winner {
    right: -5px; /* Кубок справа для команды Radiant */
}

.winner-indicator.dire-winner {
    left: -5px; /* Кубок слева для команды Dire */
}

@keyframes winner-glow {
    from {
        text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700, 0 0 15px #ffd700;
        transform: scale(1);
    }
    to {
        text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700;
        transform: scale(1.1);
    }
}

/* Позиционирование для разных типов контейнеров */
.team-image,
.team-image-desktop,
.team-image-vertical,
.team-image-compact {
    position: relative;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .winner-indicator {
        font-size: 1.2em;
        top: -3px;
    }
    
    .winner-indicator.radiant-winner {
        right: -3px;
    }
    
    .winner-indicator.dire-winner {
        left: -3px;
    }
}

/* Стили для предсказаний по убийствам */
.kills-prediction-box-desktop {
    background: rgba(33, 37, 41, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
}

.kills-prediction-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kills-choice-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.kills-odds {
    font-size: 0.85em;
    color: #adb5bd;
}

.kills-result {
    padding: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border-left: 3px solid #007bff;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 767px) {
    .kills-prediction-box-desktop {
        padding: 8px;
        margin-top: 6px;
    }
    
    .kills-choice-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .kills-odds {
        font-size: 0.8em;
    }
}

/* Темная тема */
body[data-theme="dark"] .kills-prediction-box-desktop {
    background: rgba(52, 58, 64, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

body[data-theme="dark"] .kills-result {
    background: rgba(0, 0, 0, 0.5);
    border-left-color: #17a2b8;
}

/* Улучшения для мобильных карточек предсказаний */
.mobile-prediction-compact .kills-prediction-content {
    gap: 6px;
}

.mobile-prediction-compact .kills-choice-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

/* Анимации для лучшего UX */
.kills-prediction-box-desktop,
.mobile-prediction-compact {
    transition: all 0.3s ease;
}

.kills-prediction-box-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Стили для индикаторов правильности предсказаний */
.badge.bg-success {
    background-color: #198754 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-info {
    background-color: #0dcaf0 !important;
    color: #000 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}
