﻿/*.avatar-iniciales {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45px;
    height: 40px;
    background-color: #6D071A;
    color: white;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
}
*/

.avatar-iniciales {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    min-width: 40px; /* tamaño mínimo para una letra */
    height: 40px;
    padding: 0 10px; /* espacio horizontal para más letras */
    background: linear-gradient(90deg, #6a2c38 0%, #7b2f3d 50%, #5a222c 100%);
    color: white;
    border-radius: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    box-sizing: border-box; /* evita que el padding agrande demasiado */
}


/* Tooltip estilo lista */
.tooltip-avatar {
    position: absolute;
    top: 100px; /* justo debajo del avatar */
    right: 0;
    background-color: white;
    color: #3b3c36;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1050;
    min-width: 200px;
}

    /* Mostrar tooltip cuando está activo */
    .tooltip-avatar.active {
        display: block;
    }

/* Lista interna */
.tooltip-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .tooltip-list li {
        padding: 8px 10px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        border-radius: 6px;
        transition: background-color 0.2s ease;
    }

        .tooltip-list li:hover {
            background-color: #f0f0f0;
        }

        .tooltip-list li a {
            color: #3b3c36;
            text-decoration: none;
        }

        .tooltip-list li:hover a {
            color: #3b3c36; /* evita el azul en hover */
        }


.icon-chevron {
    font-size: 10px;
    padding-left:4px;
}





.avatar-wrapper:hover .tooltip-avatar {
    display: block;
}


/*
.avatar-wrapper {
    position: relative;
    display: inline-block;
}*/
