/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between; /* Space between logo and nav links */
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #343a40;
}

/* Brand and logo */
.navbar-brand {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.6rem;
    text-decoration: none;
}

.navbar-logo {
    width: 80px; /* Adjust size as needed */
    height: auto;
    margin-right: 0.5rem; /* Space between logo and text */
    background: white;
    padding: 3px;
    border-radius: 10%;
}

/* Navbar links */
.navbar-nav {
    display: flex; /* Makes links display side by side */
    flex-direction: row; /* Ensures links are in a horizontal row */
    gap: 1rem; /* Space between links */
    list-style: none; /* Remove default bullet points if using <ul> */
    margin: 0; /* Reset default margins */
    padding: 0; /* Reset default padding */
}

.navbar-nav .nav-link {
    color: #ddd; /* Link color */
    font-size: 1rem; /* Font size */
    text-decoration: none; /* Remove underline */
    padding: 0.5rem; /* Padding for clickable area */
    transition: color 0.3s ease; /* Smooth hover transition */
}

.navbar-nav .nav-link:hover {
    color: #007bff; /* Highlight on hover */
}


.navbar-nav .nav-link:hover {
    color: #007bff; /* Highlight on hover */
}

/* Toggler button */
.navbar-toggler {
    display: none; /* Hidden by default */
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
}

.custom-footer {
    background-color: #343a40;
    color: #dcdcdc;
    padding: 1.5rem 0;
    border-top: 2px solid #495057;
    bottom: 0;
    width: 100%; /* Make it full width */
    box-sizing: border-box; /* Ensure padding is included in width calculations */
}

.custom-footer .container {
    text-align: center;
    margin-top: 50px;
}

.custom-footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* Responsive styles */
@media (max-width: 768px) {
    .navbar-nav {
        display: none; /* Hide navigation links by default on small screens */
        flex-direction: column; /* Stack links vertically */
        background-color: #343a40;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
    }

    .navbar-nav.show {
        display: flex; /* Show links when toggler is clicked */
    }

    .navbar-toggler {
        display: inline-block; /* Show toggler on small screens */
    }
}
