.sticky-header {
    background-color: rgba(255, 255, 255, 0.8); 
    position: fixed;
    width: 100%;
    }
.main-content {
    z-index: 9998;
}
.navbar-collapse .btn {
    width: 100%;
    margin-top: 10px;
}	
body {
    padding-top: 70px; 
}
.navbar {

    height: 70px;
    transition: all 0.3s ease-in-out;
    opacity: 0.9;
}
.navbar.scrolled {
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .navbar-nav .nav-link{
    font-size: 15px;
}
.navbar.scrolled .navbar-brand {
    font-size: 22px;
}
.navbar.scrolled .navbar-brand img {
    width: 67px;
}
.navbar.scrolled .btn {
    padding: 9px 19px;
}
@media (max-width: 991px) {
    .navbar {
        padding: 0;
    }
}
.navbar-light .navbar-nav .nav-link {
    font-size: 20px;
}
.navbar-light .navbar-brand {
    font-size: 30px;
}
.navbar-light .navbar-brand span {
    position: relative;
    left: -10px;
}
.navbar-toggler {
    border: none;
}
.navbar-collapse {
background-color: #f8f9fa; /* Ensure the background is visible on collapse */
color: black;
text-align: center;
   }


.alert.js-auto-dismiss {
    overflow: hidden;
    max-height: 100px; /* Set an initial max-height for the alert */
    opacity: 1;
    border-radius: 5px;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
.alert.js-auto-dismiss.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0;
}
