.custom-avatar-container {
    position: relative;
    display: inline-block;
}

.avatar-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.avatar-image {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
}

.login-icon {
    font-size: 24px !important;
    color: #fff !important;
}

/* El SVG tambien blanco */
.login-icon svg {
    fill: #fff;
}

.dropdown-menu {
    font-size: 13px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    z-index: 1;
    border-radius: 5px;
    padding: 1rem;
    z-index: 1000;
}

.dropdown-menu p {
    margin-bottom: 0 !important;
    margin-top: 0;
}

.dropdown-menu p:not(:last-child) {
    margin-bottom: 1rem !important;
}

.dropdown-menu p a {
    text-decoration: none;
    display: block;
}

.loading-icon svg {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}