/* Asegura que todo el contenido comience desde 0,0 */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Encabezado superior */
.user-header {
    background-color: #2c3e50; /* azul oscuro */
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* separa .left y .right */
    align-items: center;
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    height: 50px;
    position: relative;
    top: 0;
    left: 0;
}

/* Enlaces generales */
.user-header a {
    color: #00cec9;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
}

/* Hover en enlaces */
.user-header a:hover {
    text-decoration: underline;
}

/* Botón de cerrar sesión */
.logout-button {
    background-color: #0c5a2e;
    color: white !important;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 20px;
    transition: background 0.3s ease;
}

/* Hover para botón */
.logout-button:hover {
    background-color: #c0392b;
}

/* Estilo para el contenido de la derecha */
.user-header .right {
    display: flex;
    align-items: center;
}

.user-header .right span {
    margin-left: 10px;
}

/* Estilo para el contenido de la izquierda */
.user-header .left {
    display: flex;
    align-items: center;
}
