/* ИСПРАВЛЕНИЕ ЕДИНООБРАЗНОГО ВИДА ВСЕХ КАРТОЧЕК СТАТИСТИКИ */

/* БАЗОВЫЕ СТИЛИ ДЛЯ ВСЕХ КАРТОЧЕК */
.stats-card {
    border: none !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.stats-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) !important;
}

/* ЕДИНООБРАЗНЫЕ СТИЛИ ДЛЯ ВСЕХ ЦИФР В КАРТОЧКАХ */
.stats-card h4 {
    color: #ffffff !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    margin: 0 !important;
    line-height: 1 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    display: block !important;
    visibility: visible !important;
}

/* ЕДИНООБРАЗНЫЕ СТИЛИ ДЛЯ ВСЕХ ПОДПИСЕЙ В КАРТОЧКАХ */
.stats-card p {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    opacity: 0.95 !important;
    display: block !important;
    visibility: visible !important;
}

/* ЕДИНООБРАЗНЫЕ СТИЛИ ДЛЯ ВСЕХ ЭМОДЗИ */
.stats-card span[style*="font-size"] {
    font-size: 3.5rem !important;
    line-height: 1 !important;
    opacity: 0.9 !important;
    display: block !important;
}

/* ЕДИНООБРАЗНЫЕ СТИЛИ ДЛЯ ВСЕХ ФУТЕРОВ КАРТОЧЕК */
.stats-card .card-footer {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.75rem 1.25rem !important;
}

.stats-card .card-footer a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.stats-card .card-footer a:hover {
    color: #ffffff !important;
    opacity: 0.8 !important;
}

.stats-card .card-footer i {
    color: #ffffff !important;
}

/* СПЕЦИАЛЬНЫЕ СТИЛИ ДЛЯ КАЖДОГО ЦВЕТА КАРТОЧКИ */
.stats-card.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
}

.stats-card.bg-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.stats-card.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

.stats-card.bg-warning {
    background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%) !important;
}

.stats-card.bg-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%) !important;
}

.stats-card.bg-dark {
    background: linear-gradient(135deg, #343a40 0%, #1d2124 100%) !important;
}

/* ПРИНУДИТЕЛЬНЫЕ СТИЛИ ДЛЯ ВСЕХ ЭЛЕМЕНТОВ В КАРТОЧКАХ */
.stats-card * {
    color: #ffffff !important;
}

.stats-card .card-body {
    background-color: transparent !important;
    padding: 1.5rem !important;
}

.stats-card .card-body .d-flex {
    align-items: center !important;
}

.stats-card .card-body div {
    color: #ffffff !important;
}

/* УБИРАЕМ ВСЕ ВОЗМОЖНЫЕ ПЕРЕОПРЕДЕЛЕНИЯ */
.card.stats-card h1,
.card.stats-card h2, 
.card.stats-card h3,
.card.stats-card h4,
.card.stats-card h5,
.card.stats-card h6 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.card.stats-card p,
.card.stats-card span,
.card.stats-card div,
.card.stats-card a {
    color: #ffffff !important;
}

/* СТИЛИ ДЛЯ СТРАНИЦЫ ВХОДА */
.min-vh-100 .form-label {
    color: #495057 !important;
    font-weight: 600 !important;
}

.min-vh-100 .form-control {
    background-color: #ffffff !important;
    color: #495057 !important;
    border: 1px solid #ced4da !important;
}

.min-vh-100 .input-group-text {
    background-color: #e9ecef !important;
    color: #495057 !important;
    border: 1px solid #ced4da !important;
}

.min-vh-100 .text-muted {
    color: #6c757d !important;
}

.min-vh-100 .btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.min-vh-100 .text-primary {
    color: #0d6efd !important;
}
