body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.nav-btn {
    color: white !important;
    padding: 0.375rem 0.75rem;
    margin-right: 10px;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}


.navbar {
    background: #eff0f2 !important;
    border-bottom: 2px solid #f8b400;
}

.navbar-brand {
    color: #ffffff !important;
    font-weight: bold;
}

.navbar-brand img {
    height: 60px;
    margin-right: 10px;
}

.rate {
    color: #0a592b;
    font-weight: bold;
    margin-right: 15px;
}

.btn-logout {
    background: #dc3545;
    color: #ffffff;
    border: none;
    transition: background 0.3s ease-in-out;
}

.btn-logout:hover {
    background: #c82333;
}

.navbar-two {
    background-color: #343a40;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-icons {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    margin: 10px;
}

.header-top-icons li {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.header-top-icons li i {
    margin-right: 18px;
}

.badge {
    font-size: 14px;
    padding: 4px 8px;
    margin-left: 5px;
    font-weight: bold;
}

.badge {
    font-size: 14px;
    padding: 4px 8px;
    margin-left: 5px;
    font-weight: bold;
}

/* Basic styling for larger screens */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.span-text-1{
    color: #0f0101;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}


@media (max-width: 768px) {

    .navbar-brand img {
        height: 45px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .rate,
    .btn-logout {
        display: block;
        /* Make sure these are visible and adapted for mobile */
        margin-top: 10px;
        text-align: center;
        /* Center align the text for better mobile layout */
    }

    .navbar-two .header-top-icons {
        flex-direction: column;
    }

    .header-top-icons li {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        margin-bottom: 5px;
    }

    .dropdown-menu {
        width: 100%;
    }

    .badge {
        font-size: 12px;
    }
}