.navbar {
    height: 56px;
    background-color: #212529;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-left .btn,
.navbar-right .btn {
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s;
}

.navbar-left .btn:hover,
.navbar-right .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.navbar .navbar-brand i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
}

.navbar .navbar-brand span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu {
    background-color: #343a40;
    color: #fff;
    border: none;
}

.dropdown-item {
    color: #fff;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    margin-right: 0.5rem;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#navbarSearch .form-control {
    height: 32px;
    padding: 0 0.75rem;
    border-radius: 50px;
    transition: width 0.3s ease;
    width: 180px;
    max-width: 100%;
}

#navbarSearch .btn-sm {
    height: 32px;
    border-radius: 50px;
}