body {
    background: #f5f5f5;
    margin-top: 20px;
}

.ui-w-80 {
    width : 80px !important;
    height: auto;
}

.btn-default {
    border-color: rgba(24, 28, 33, 0.1);
    background  : rgba(0, 0, 0, 0);
    color       : #4E5155;
}

label.btn {
    margin-bottom: 0;
}

.btn-outline-primary {
    border-color: #26B4FF;
    background  : transparent;
    color       : #26B4FF;
}

.btn {
    cursor: pointer;
}

.text-light {
    color: #babbbc !important;
}

.btn-facebook {
    border-color: rgba(0, 0, 0, 0);
    background  : #3B5998;
    color       : #fff;
}

.btn-instagram {
    border-color: rgba(0, 0, 0, 0);
    background  : #000;
    color       : #fff;
}

.card {
    background-clip: padding-box;
    box-shadow     : 0 1px 4px rgba(24, 28, 33, 0.012);
}

.row-bordered {
    overflow: hidden;
}

.account-settings-fileinput {
    position  : absolute;
    visibility: hidden;
    width     : 1px;
    height    : 1px;
    opacity   : 0;
}

.account-settings-links .list-group-item.active {
    font-weight: bold !important;
}

html:not(.dark-style) .account-settings-links .list-group-item.active {
    background: transparent !important;
}

.account-settings-multiselect~.select2-container {
    width: 100% !important;
}

.light-style .account-settings-links .list-group-item {
    padding     : 0.85rem 1.5rem;
    border-color: rgba(24, 28, 33, 0.03) !important;
}

.light-style .account-settings-links .list-group-item.active {
    color: #4e5155 !important;
}

.material-style .account-settings-links .list-group-item {
    padding     : 0.85rem 1.5rem;
    border-color: rgba(24, 28, 33, 0.03) !important;
}

.material-style .account-settings-links .list-group-item.active {
    color: #4e5155 !important;
}

.dark-style .account-settings-links .list-group-item {
    padding     : 0.85rem 1.5rem;
    border-color: rgba(255, 255, 255, 0.03) !important;
}

.dark-style .account-settings-links .list-group-item.active {
    color: #fff !important;
}

.light-style .account-settings-links .list-group-item.active {
    color: #4E5155 !important;
}

.light-style .account-settings-links .list-group-item {
    padding     : 0.85rem 1.5rem;
    border-color: rgba(24, 28, 33, 0.03) !important;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 12px 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* Left Section (Logo) */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #f4a31e;
}

/* Center Section (Nav Links) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

.nav-links a.active {
    color: #f4a31e;
    border-bottom: 3px solid #f4a31e;
}

.nav-links a:hover {
    color: #f4a31e;
}

/* Right Section ( Profile + Logout) */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.profile img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.profile span {
    font-size: 14px;
    color: #333;
}

/* Logout Button */
.logout-btn {
    background-color: #8835e6;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0px 3px 10px rgba(162, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.logout-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.logout-btn:hover::before {
    left: 100%;
}

.logout-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(204, 0, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary, .btn-outline-primary:hover{
    background-color: #8835e6 !important;
    border-color: #3e146e !important;
    color: white !important;
}

.btn-outline-primary{
    color: #8835e6 !important;
    border-color: #8835e6 !important;
 }
.btn-primary:focus{
    box-shadow: 0 0 0 .2em #551a97 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
    color: #551a97;
    font-size: 27px;
}

.container-rating{
    align-items: center;
    align-content: flex-start;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        background: white;
        width: 200px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        border-radius: 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .navbar{
        flex-wrap: unset !important;
    }
}

/* Hide the menu toggle button on larger screens */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .logo {
        height: 25px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .nav-links {
        top: 50px; /* Adjusted position */
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 6px 8px;
    }
    
    .profile img {
        height: 24px;
        width: 24px;
    }
    
    .logout-btn {
        padding: 5px 10px;
        font-size: 11px;
        margin-right: 10px;
    }
    
    .dashboard-title {
        padding-top: 15%; /* Adjusted for smaller navbar */
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .navbar {
        flex-wrap: wrap;
        padding: 6px;
    }
    
    .navbar-left, .navbar-right {
        gap: 12px;
    }
    
    .logout-btn {
        margin-right: 5px;
        padding: 5px 9px;
    }
}
