/* Footer Alignment Fix */

/* Ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-wrapper {
    flex: 1;
}

/* Footer styling */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.footer .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Responsive footer */
@media (max-width: 576px) {
    .footer .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer .text-muted {
        font-size: 0.875rem;
    }
}

/* Ensure proper spacing */
.footer .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
