/* General Styles */
body {
    padding-top: 50px;
    padding-bottom: 40px;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styles */
.navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff; /* White background */
        display: flex;
        align-items: center;
        padding: 10px 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
}

.logo img {
    height: 40px;
    width: auto;
}

.navbar-title {
        margin-left: 15px;
        font-size: 1.2rem;
        font-weight: bold;
        color: #333;
}

.navbar-spacer {
    flex: 1;
}

/* Content Styles */
.content {
    flex: 1;
    padding: 20px;
}

/* Section Styles */
section {
    display: none;
}

section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Adjust color as needed */
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
}

.footer-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #007bff;
}

.footer-nav i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}