/* Основные стили для layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

main {
    flex: 1;
}

.navbar-brand {
    font-weight: 700;
}

.footer {
    background-color: #343a40;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}
