
body {
    padding-top: calc(60px + 4rem + 1.5rem);
}

/* Big navbar */

.big-navbar {
    background-color: #074d7c;
    padding: 0.5rem 0;
    height: 60px;
    display: flex;
    align-items: center;
    position: fixed; /* Change from sticky to fixed */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.big-navbar .nav-item .nav-link {
    margin-right: 1rem;
    color: #ffffff;
}

.big-navbar .nav-item .nav-link:hover {
    color: #f1c40f;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border-color: rgb(255, 255, 255);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}
/* Small Navbar */

.small-navbar {
    background-color: #3498db;
    padding: 0.8rem 0;
    position: fixed; /* Change from sticky to fixed */
    top: 60px; /* This should be the height of the big navbar */
    left: 0;
    right: 0;
    z-index: 999;
}

.small-navbar .nav-item .btn {
    height: 1.5rem;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    line-height: 0.5rem;
}

.small-navbar .nav-item .btn:hover {
    color: #000000;
}

