/* ============================================
   0) ELIMINAR EL ESPACIO SUPERIOR DEL TEMA
   ============================================ */
.entry-content.is-layout-constrained > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#bazan-campus-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ============================================
   1) HEADER NORMAL (NO FIJO)
   ============================================ */
#bazan-campus-header {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    z-index: 10;
}

/* ============================================
   2) LÍNEA DIVISORIA A PANTALLA COMPLETA
   ============================================ */
#bazan-campus-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    height: 1px;
    background: #e0e0e0;
}

/* ============================================
   3) CONTENEDOR INTERIOR (ANCHO DEL TEMA)
   ============================================ */
.bazan-campus-header-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    width: 100%;
    max-width: 1290px;
    margin: 0 auto;

    padding: 4px 0;
}

/* ============================================
   4) BOTÓN ADMIN
   ============================================ */
.bazan-campus-admin {
    position: relative;
}

.bazan-campus-admin-btn {
    background: #E67E22; /* naranja elegante */
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid #cf6f1d; /* borde ligeramente más oscuro */
    transition: background 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

.bazan-campus-admin-btn:hover {
    background: #cf6f1d; /* hover más oscuro */
    border-color: #b86119;
}

/* ============================================
   5) MENÚ DESPLEGABLE ADMIN
   ============================================ */
.bazan-campus-admin-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;

    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    padding: 6px 0;
    min-width: 200px;

    display: none;
    z-index: 9999;
}

.bazan-campus-admin-menu.visible {
    display: block;
}

.bazan-campus-admin-menu div {
    padding: 10px 16px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 15px;
}

.bazan-campus-admin-menu div:hover {
    background: #f2f2f2;
}

/* ============================================
   6) EL CONTENIDO DEL CAMPUS NO NECESITA MARGEN
   ============================================ */
#bazan-campus {
    margin-top: 0 !important;
}


/* ============================================
   7) BOTONES DEL MENÚ SUPERIOR MIS CURSOS, RENOVAR, CORREO INTERNO, TABLON 
   ============================================ */

.bazan-campus-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background:  transparent;
    border-bottom: 1px solid #ddd;
}

.bazan-campus-left {
    display: flex;
    gap: 12px;
}

.bazan-campus-btn {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-weight: 600;
    transition: background 0.2s ease;
}

.bazan-campus-btn:hover {
    background: #e9e9e9;
}
