/* Custom CSS for The Center */

/* Combine Bootstrap and Tailwind utilities */
.space-y-4 > * + * {
    margin-top: 1rem;
}

/* Custom button styles */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Form styling */
.form-control-lg {
    border-radius: 0.5rem;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Navbar styling */
.navbar {
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
}

.navbar-nav .dropdown-menu {
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Alert styling */
.alert {
    border-radius: 0.5rem;
}

/* Footer styling - Sticky footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

/* Ensure navbar is always visible */
.navbar {
    display: block !important;
    visibility: visible !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
}

/* Tailwind utility classes can be used alongside Bootstrap */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

