/*Custom header overrides*/

.header-tag_urjc {
    background-color: #CB0017;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 73px;
}

.header-container_urjc {
    background-color: #CB0017;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 18px;
    position: relative; /* Para posicionar el menú desplegable */
}

.header-svg-logo_urjc {
    width: 149px;
    margin-left: 10px;
}

/* Estilos para el menú */
.header-menu {
    display: flex;
    align-items: center;
}

/* Botón hamburguesa: inicialmente oculto en pantallas grandes */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

/* Contenedor de enlaces del menú */
.menu-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.menu-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo para el contenedor del usuario */
.urjc_header_user {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.user-icon {
    font-size: 20px;
    color: #fff;
}

/* Dropdown del usuario: inicialmente oculto */
.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1000;
}

.user-dropdown span {
    color: #333;
    font-weight: bold;
}

/* Mostrar el dropdown cuando tenga la clase active */
.user-dropdown.active {
    display: block;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    /* Mostrar el botón hamburguesa */
    .hamburger {
        display: flex;
    }

    /* Ocultar el menú inicialmente */
    .menu-links {
        display: none;
        flex-direction: column;
        background-color: #CB0017;
        position: absolute;
        top: 73px;
        right: 0;
        width: 100%;
        padding: 10px 0;
    }

    /* Mostrar el menú cuando se active */
    .menu-links.active {
        display: flex;
    }
}
