/* Main styles for the application */

/* Background image for main menu */
.main-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?abstract,digital');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Custom button styling for main menu */
.main-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-buttons .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.main-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Global styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Improve button focus visibility */
.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.5);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .main-buttons .btn {
        width: 90% !important;
    }
}
