/* Глобальные стили */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Наша замена text-muted */
.text-label {
    color: #6c757d !important;
    font-size: 0.9em;
}

/* Красивые карточки */
.custom-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.custom-card:hover {
    transform: translateY(-5px);
}