/* =========================
   TOPBAR
========================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;

  background: #1e3c72;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;
  color: white;

  z-index: 1000;

  /* ?? NUEVO */
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* =========================
   IZQUIERDA (LOGO)
========================= */
.topbar-left {
  display: flex;
  align-items: center;
  height: 100%;
}

/* =========================
   CENTRO (OPCIONAL)
========================= */
.topbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================
   DERECHA (USUARIO)
========================= */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   LOGO
========================= */
.logo-main {
  height: 30px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}

/* =========================
   PERFIL
========================= */
.profile {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

/* nombre usuario */
.profile span {
  text-transform: capitalize;
}

/* =========================
   BOTÓN SALIR
========================= */
.logout-btn {
  background: #e74c3c;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.logout-btn:hover {
  background: #c0392b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .topbar {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
    gap: 10px;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
  }

  .topbar-right {
    width: 100%;
    justify-content: center;
  }

  .profile {
    font-size: 13px;
  }
}