/* /assets/css/style.css */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures footer stays at bottom */
    background-color: #f8f9fa;
}

.transition-hover {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Custom dark blue/black accents requested */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.bg-dark {
    background-color: #111827 !important; /* Deeper dark for premium feel */
}