/* Navbar styles */
.navbar {
    background-color: #0d0f27;
    border-bottom: 1px solid #0d0f27;
    padding: 10px 0;
}

.navbar .navbar-brand img {
    height: 60px;
    width: auto;
    margin-right: 20px;
    border: 5px solid #fff;
    border-radius: 5px;
}

.navbar .nav-link {
    color: #fff;
    font-weight: bold;
    margin-left: 20px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #007bff;
}

.logo-list .list-inline-item a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 10px;
    position: relative;
    top: 10px; /* Adjust this value to move the links down */
}

.logo-list .list-inline-item a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: white;
    }

    .navbar-nav .nav-item .nav-link {
        color: black !important;
    }

    .navbar-nav .nav-item .nav-link:hover,
    .navbar-nav .nav-item .nav-link.active {
        color: #007bff !important;
    }

    .navbar-toggler {
        border-color: white;
    }

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

    .navbar .nav-link {
        font-size: 0.9rem;
        margin-left: 10px;
    }

    .logo-list {
        padding-right: 210px; 
    }
}

/* Additional media query for devices with width 300px to 800px */
@media (max-width: 800px) and (min-width: 300px) {
    .navbar .nav-link {
        font-size: 20px; 
        margin-left: 5px; 
    }

    .logo-list .list-inline-item a {
        font-size: 1.2rem; 
        margin-right: 5px; 
        top: 8px; 
    }

    .logo-list {
        padding-right: 200px; /* Adjust this value to move the links more to the left */
    }
}

/* Additional media query specifically for Samsung Galaxy S8+ */
@media (max-width: 360px) {
    .navbar-collapse {
        background-color: white;
    }

    .navbar-nav .nav-item .nav-link {
        color: black !important;
    }

    .navbar-nav .nav-item .nav-link:hover,
    .navbar-nav .nav-item .nav-link.active {
        color: #007bff !important;
    }

    .navbar-toggler {
        border-color: white;
    }

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

    .navbar .nav-link {
        font-size: 17px; 
        margin-left: 3px; 
    }

    .logo-list .list-inline-item a {
        font-size: 1rem; 
        margin-right: 3px; 
        top: 6px; /* Adjust this value to move the links down */
    }

    .logo-list {
        padding-right: 180px; /* Adjust this value to move the links more to the left */
    }
}
