/* General Styles for All Screen Sizes */
.navbar {
    padding: 10px;
}

.navbar-brand img {
    height: 60px; /* Adjust logo size for better responsiveness */
}

.nav-link {
    padding: 8px; /* Reduce padding for smaller screens */
}
.navbar-nav .nav-link {
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    background-color: #87ceeb;
    color: #fff;
    border-radius: 5px;
}

.navbar-nav .nav-link.active {
    background-color: #87ceeb;
    color: #fff;
}


/* Media Query for Small Screens (Up to 576px) */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 50px;
    }

    .nav-link {
        padding: 6px;
        font-size: 14px; /* Reduce font size for smaller screens */
    }
}

/* Media Query for Medium Screens (Up to 768px) */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }

    .nav-link {
        font-size: 15px;
    }

    .navbar-toggler {
        border: none; /* Optional: Remove the border for better appearance */
    }
}

/* Media Query for Larger Mobile Screens (Up to 992px) */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 70px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 16px;
    }
}
