/* ===================================================
   CLASES DE TAXES — Dashboard limpio y sin conflictos
   (Sidebar + Mi perfil)
   =================================================== */

/* ---------- Tipografía base del panel derecho ---------- */
.tutor-dashboard-content{
  color: var(--ct-text, #1F2937);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

/* ---------- Título del panel ("Mi perfil") ---------- */
.tutor-dashboard-content > .tutor-fs-5.tutor-fw-medium{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ct-azul, #074B94);
  margin: 6px 0 16px;
}

/* ---------- Card del perfil ---------- */
.tutor-dashboard-profile-data{
  background: #fff;
  border: 1px solid var(--ct-line, #E5E7EB);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(7,75,148,.05);
  overflow: hidden;
}

/* Cada fila: 2 columnas → label fijo + valor fluido (solo dentro del perfil) */
.tutor-dashboard-profile-data .tutor-row{
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 12px 24px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ct-line, #E5E7EB);
}
.tutor-dashboard-profile-data .tutor-row:last-child{ border-bottom: 0; }

/* Neutraliza columnas utilitarias SOLO dentro del perfil */
.tutor-dashboard-profile-data .tutor-col-12,
.tutor-dashboard-profile-data .tutor-col-sm-5,
.tutor-dashboard-profile-data .tutor-col-sm-7,
.tutor-dashboard-profile-data .tutor-col-lg-3,
.tutor-dashboard-profile-data .tutor-col-lg-9{
  width: auto !important;
  max-width: none !important;
  flex: initial !important;
}

/* Label (izquierda) — semibold, sin cortes, color secundario */
.tutor-dashboard-profile-data .tutor-color-secondary{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ct-muted, #6B7280);
  white-space: nowrap;      /* evita cortes raros */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Valor (derecha) — medio/negrita y color principal */
.tutor-dashboard-profile-data .tutor-color-black{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ct-text, #1F2937);
  word-break: break-word;   /* por si el email es larguísimo */
  hyphens: none;
}

/* Hover sutil en filas */
.tutor-dashboard-profile-data .tutor-row:hover{
  background: rgba(7,75,148,.035);
}

/* ---------- Sidebar (tu UL real) ---------- */
.tutor-dashboard-permalinks{
  margin: 0;
  padding: 6px;
  list-style: none;
}

/* Item base del menú */
.tutor-dashboard-permalinks li > a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ct-text, #1F2937) !important;
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s;
}

/* Icono */
.tutor-dashboard-permalinks .tutor-dashboard-menu-item-icon{
  width: 22px; height: 22px; flex: 0 0 22px;
  color: var(--ct-azul, #074B94);
}

/* Hover de NO activos */
.tutor-dashboard-permalinks li:not(.active):not(.current-menu-item):not(.is-active) > a:hover{
  background: rgba(7,75,148,.06);
  color: var(--ct-azul, #074B94) !important;
  transform: translateX(2px);
}

/* ACTIVO en BLANCO (píldora) */
.tutor-dashboard-permalinks li.active > a,
.tutor-dashboard-permalinks li.current-menu-item > a,
.tutor-dashboard-permalinks li.is-active > a{
  background: #fff !important;
  color: var(--ct-azul, #074B94) !important;
  border: 1px solid var(--ct-line, #E5E7EB);
  box-shadow: 0 6px 14px rgba(7,75,148,.08);
  border-radius: 12px;
  border-left: 4px solid var(--ct-amarillo, #F1C524); /* acento lateral */
  padding-left: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px){
  .tutor-dashboard-profile-data .tutor-row{
    grid-template-columns: 1fr;   /* apila */
    gap: 6px 12px;
    padding: 12px 14px;
  }
  .tutor-dashboard-profile-data .tutor-color-secondary{ white-space: normal; }
}
