/**
 * HookahPoll — кастомные стили
 */


/* Карточки статистики */

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}


/* Навигация */

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
}


/* Таблицы */

.table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.table td {
    vertical-align: middle;
}


/* Бейджи */

.badge {
    font-weight: 500;
}


/* Кнопки */

.btn {
    border-radius: 8px;
}


/* Формы */

.form-control,
.form-select {
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}


/* Прогресс-бар */

.progress {
    border-radius: 10px;
}


/* Алерты */

.alert {
    border-radius: 10px;
    border: none;
}


/* Адаптивность */

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .table-responsive {
        font-size: 0.85rem;
    }
}