.dropdown-custom {
    position: relative;
}

.dropdown-custom .nav-item-toggle {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.dropdown-custom .nav-item__title {
    margin-left: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.dropdown-custom .nav-item__arrow {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-parent-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 300px;
    display: none;
    z-index: 1000;
}

.dropdown-custom:hover .dropdown-parent-wrapper {
    display: block;
}

.dropdown-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
    margin-top: 10px;
}

.nav-author__info {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-author__options ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.nav-author__options ul li a {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.nav-author__options ul li a i {
    margin-right: 8px;
    font-size: 16px;
}

.nav-author__signout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.nav-author__signout:hover {
    background: #ebebeb;
    color: #333;
}

.nav-author__signout i {
    margin-right: 8px;
    font-size: 16px;
}

.dropdown-custom .author-img img {
    width: 40px;
    height: 40px;
}

.dropdown-custom .author-info {
    line-height: 1.2;
}

.dropdown-custom .author-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-custom .author-info span {
    font-size: 12px;
    color: #666;
}

.dropdown-custom .nav-author__options {
    padding: 8px 0;
}

.dropdown-custom .dropdown-item {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-custom .dropdown-item i {
    margin-right: 8px;
    font-size: 16px;
    width: 20px;
}

.dropdown-custom .dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-custom .dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid #eee;
}

.dropdown-custom .text-danger {
    color: #dc3545;
}

.dropdown-custom .text-danger:hover {
    background-color: #fff5f5;
}



