/* Базовые стили приложения */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.jumbotron {
    background-color: #f8f9fa;
}

/* Карточки */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Формы */
.form-label {
    font-weight: 500;
}

/* Алерты */
.alert {
    border-radius: 0.5rem;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Адаптивность */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}
