﻿.link-personalizado {
    color: #F50057;
    font-weight: bold;
}
.link-personalizado:hover{
    text-decoration:underline;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8); /* Fondo oscuro traslúcido */
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que quede encima de todo */
}

.loader-container {
    text-align: center;
    color: white !important;
    font-size: 20px;    
}
.loader-container p{
    color: white !important;
    font-size: 20px;
}

.loader-gif {
    width: 40%;
    height: 40%;
    margin-bottom: 15px;
}


.user-menu {
    position: relative;
    display: inline-block;
}

/* 🔵 Círculo con iniciales */
.user-avatar {
    width: 40px;
    height: 40px;
    background-color: rgb(65, 70, 151); /* color base */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
}

    .user-avatar:hover {
        background-color: #F50057;
    }

/* 📋 Menú desplegable */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    min-width: 160px;
    z-index: 1000;
}

    .dropdown-menu a {
        display: block;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        transition: background 0.2s;
    }

        .dropdown-menu a:hover {
            background-color: #f2f2f2;
        }
