﻿:root {
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --light-gray: #f1f3f5;
}

body {
    flex-direction: column;
   
}

main {
    flex: 1; /* Expands to push footer down */
}

footer {
    margin-top: auto; /* Pushes footer to bottom */
}

/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

footer h6 {
    margin-bottom: 20px;
}

.footer-logo {
    max-height: 80px;
    max-width: 80px;
    width: 60px; /* adjust logo size */
    height: auto; /* keep aspect ratio */
    border-radius: 8px; /* optional rounded corners */
    margin-bottom: 10px; /* space under logo */
}

footer .footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    footer .footer-link:hover {
        color: var(--bs-warning);
    }
