* {
  font-family: Arial, Helvetica, sans-serif;
}

#cont-loader-response {
  position: fixed;
  z-index: 99999999999;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Personalización del botón "Choose File" usando el color primario de Bootstrap */
.custom-file-button::-webkit-file-upload-button {
  background-color: #0ea5e9;
  /* Azul primario de Bootstrap */
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin: -8px;
  /* Alineación para compensar el padding del form-control */
  margin-right: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.custom-file-button::-webkit-file-upload-button:hover {
  background-color: #0ea5e9;
}

/* Compatibilidad para Firefox */
.custom-file-button::file-selector-button {
  background-color: #0ea5e9;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin: -8px;
  margin-right: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.custom-file-button:hover::file-selector-button {
  background-color: #0b5ed7;
}

/* Estilo para el menú desplegable */
.fade-content {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.fade-out {
  opacity: 0;
}

.navbar-nav .dropdown-toggle {
  cursor: pointer;
  display: flex;
  /* Para alinear el icono y el svg */
  align-items: center;
  /* Centrar verticalmente */
}

.form-label.required::after {
  content: " *";
  color: red;
}

.navbar-nav .dropdown-toggle::after {
  display: none !important;
  /* Oculta la flecha por defecto */
}

.navbar-nav .dropdown-toggle i {
  transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Rotar la flecha cuando el menú está abierto */
.navbar-nav .dropdown-toggle[aria-expanded="true"] .fa-angle-down {
  transform: rotateX(180deg);
}

.navbar-nav .dropdown-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.navbar-nav .dropdown-menu .nav-link {
  padding-left: 20px;
  color: #5e72e4;
  font-size: 0.9rem;
  text-decoration: none;
}

.navbar-nav .dropdown-menu .nav-link:hover {
  color: #344675;
}

.bento-container {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.bento-grid {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 8px;
  border-radius: 8px;
}

.bento-col1-row1 {
  grid-column: span 1;
  grid-row: span 1;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col1-row2 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col1-row3 {
  grid-column: span 1;
  grid-row: span 3;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col1-row4 {
  grid-column: span 1;
  grid-row: span 4;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col2-row1 {
  grid-column: span 2;
  grid-row: span 1;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col2-row2 {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col2-row3 {
  grid-column: span 2;
  grid-row: span 3;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col2-row4 {
  grid-column: span 2;
  grid-row: span 4;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col3-row1 {
  grid-column: span 3;
  grid-row: span 1;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col3-row2 {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col3-row3 {
  grid-column: span 3;
  grid-row: span 3;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col3-row4 {
  grid-column: span 3;
  grid-row: span 4;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col4-row1 {
  grid-column: span 4;
  grid-row: span 1;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col4-row2 {
  grid-column: span 4;
  grid-row: span 2;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col4-row3 {
  grid-column: span 4;
  grid-row: span 3;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col4-row4 {
  grid-column: span 4;
  grid-row: span 4;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col5-row1 {
  grid-column: span 5;
  grid-row: span 1;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col5-row2 {
  grid-column: span 5;
  grid-row: span 2;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col5-row3 {
  grid-column: span 5;
  grid-row: span 3;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col5-row4 {
  grid-column: span 5;
  grid-row: span 4;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col6-row1 {
  grid-column: span 6;
  grid-row: span 1;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col6-row2 {
  grid-column: span 6;
  grid-row: span 2;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col6-row3 {
  grid-column: span 6;
  grid-row: span 3;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bento-col6-row4 {
  grid-column: span 6;
  grid-row: span 4;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

/* Estilo para la tabla de horarios */
#tabla-horario td {
  border: 1px solid #ddd;
  min-width: 120px;
}

#tabla-horario td[data-fusionada="1"] {
  padding: 0;
  border: none;
}

#contenedor-resultados-filtro {
  background-color: rgba(94, 114, 229, 0.2);
  border-radius: 5px;
  max-height: 150px;
  overflow-y: auto;
  cursor: pointer;
}

#contenedor-resultados-filtro ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  padding: 5px;
}

#contenedor-resultados-filtro ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.filterable-list {
  width: calc(100% - 1rem);
  max-height: 10rem;
  overflow-y: auto;
}

.autocomplete-item:hover {
  background-color: lightblue;
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 50px auto;
  /* Centrar el ejemplo */
}

.avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-edit input {
  display: none;
}

.avatar-edit input+label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;

  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.3s ease-in-out;
}

.avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

.avatar-edit input+label::after {
  /* Set the font for this icon style */
  font-family: 'Font Awesome 6 Free';
  /* Set the weight for this icon style */
  font-weight: 900;
  /* Make sure icons render pixel-perfect */
  -webkit-font-smoothing: antialiased;
  /* Set the Unicode value for the "fa-trash" icon */
  content: '\f304';
  color: #2d2d2d;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 13px;
}

.avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 769px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .desktop-to-mobile {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
  }
}

/* Estilos para el desplegable de categorías */
.dropdown-container {
  position: relative;
  width: 100%;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  user-select: none;
}

.dropdown-header:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

.dropdown-text {
  font-size: 0.875rem;
  color: #495057;
  font-weight: 500;
}

.dropdown-arrow {
  font-size: 0.75rem;
  color: #6c757d;
  transition: transform 0.7s ease;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-top: 0;
  border-radius: 0 0 0.375rem 0.375rem;
  opacity: 0;
}

.dropdown-content.show {
  max-height: 500px;
  padding: 1rem;
  overflow: auto;
  opacity: 1;
}

.dropdown-header.active {
  background-color: rgba(0, 0, 0, .2);
  color: #fff !important;
}

.dropdown-header.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

/* Ajustes para el contenido del desplegable */
.dropdown-content .input-group {
  margin-top: 0.5rem;
}

.dropdown-content #lista-expenses {
  margin-bottom: 0.5rem;
}

.month-paid {
  background-color: #2dce89 !important;
  /* verde */
  border: 1px solid #28a745 !important;
  pointer-events: none;
  opacity: 0.6;
}

.month-pending {
  border: 1px solid #f5365c !important;
  /* rojo */
  background-color: transparent !important;
}

.doc-preview {
  border: solid 1px black;
}

.doc-preview>img {
  width: -webkit-fill-available;
  height: auto;
}

/* ========== Componente Paginador ========== */
.paginador-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0;
}

.paginador-nav {
  gap: 0.25rem !important;
  margin-bottom: 0;
}

.paginador-nav .page-item .page-link {
  max-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.8125rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.paginador-nav .page-item .page-link:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #11cdef;
}

.paginador-nav .page-item.active .page-link {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
  box-shadow: none;
}

.paginador-nav .page-item.disabled .page-link {
  opacity: 0.6;
  cursor: not-allowed;
}

.paginador-nav .paginador-prev .fa-chevron-left,
.paginador-nav .paginador-next .fa-chevron-right {
  font-size: 0.625rem;
}

.paginador-nav .paginador-ellipsis {
  cursor: default;
  border: none;
  background: transparent;
}

.paginador-info {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .paginador-nav .page-item .page-link.paginador-num {
    max-width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }
}

/* =============================================================================
   BeeAPP — paleta y componentes reutilizables (admin)
   Azul #004a8d / #002f5e, acento amarillo #e8b923 / #fce566
   ============================================================================= */

:root {
  --bee-azul-primario: #004a8d;
  --bee-azul-oscuro: #002f5e;
  --bee-azul-claro: #e6f0fa;
  --bee-amarillo: #e8b923;
  --bee-amarillo-oscuro: #c49a16;
  --bee-amarillo-brillante: #fce566;
  --bee-fondo-suave: #f8fafc;
  --bee-sombra-card: 0 8px 24px rgba(0, 47, 94, 0.08);
  --bee-sombra-card-suave: 0 8px 24px rgba(0, 47, 94, 0.07);
  --bee-gradient-hero: linear-gradient(145deg, #002f5e 0%, #004a8d 55%, #0a5ba8 100%);
  --bee-gradient-boton: linear-gradient(135deg, #e8b923 0%, #c49a16 100%);
  --bee-halo-hero: radial-gradient(circle at 90% 20%, rgba(252, 229, 102, 0.18) 0%, transparent 45%);
}

/* --- Cabeceras de tablas admin (buscador + acción principal) --- */
.bee-admin-table-card {
  border: 1px solid rgba(0, 74, 141, 0.1);
  box-shadow: var(--bee-sombra-card-suave) !important;
  overflow: hidden;
}

.bee-admin-table-hero {
  background: var(--bee-gradient-hero);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 47, 94, 0.12);
}

.bee-admin-table-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 85% 15%, rgba(252, 229, 102, 0.16) 0%, transparent 42%);
  pointer-events: none;
}

.bee-admin-table-hero .row {
  position: relative;
  z-index: 1;
}

.bee-admin-table-accent {
  display: inline-block;
  width: 3px;
  height: 1.5rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--bee-amarillo-brillante), var(--bee-amarillo));
  flex-shrink: 0;
}

.bee-admin-table-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff !important;
}

.bee-admin-table-btn {
  background: var(--bee-gradient-boton);
  border: none;
  color: #1a1a1a !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(232, 185, 35, 0.35);
}

.bee-admin-table-btn:hover {
  filter: brightness(1.06);
  color: #111 !important;
}

.bee-admin-table-hero .input-group-outline {
  border-color: rgba(0, 74, 141, 0.12) !important;
}

.bee-admin-table-hero .input-group-outline .form-control {
  box-shadow: none !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

/* --- Dashboard admin (card superior) --- */
.bee-dash-hero-card {
  border: 1px solid rgba(0, 74, 141, 0.1);
  overflow: hidden;
  box-shadow: var(--bee-sombra-card) !important;
}

.bee-dash-hero-head {
  background: var(--bee-gradient-hero);
  position: relative;
}

.bee-dash-hero-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bee-halo-hero);
  pointer-events: none;
}

.bee-dash-hero-head > .d-flex {
  position: relative;
  z-index: 1;
}

.bee-dash-hero-accent {
  display: inline-block;
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bee-amarillo-brillante), var(--bee-amarillo));
  margin-bottom: 0.65rem;
}

.bee-dash-hero-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bee-dash-hero-sub {
  opacity: 0.88;
  line-height: 1.45;
}

.bee-dash-hero-date {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--bee-azul-oscuro) !important;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.bee-dash-hero-body {
  background: linear-gradient(180deg, #ffffff 0%, var(--bee-fondo-suave) 100%);
  border-top: 1px solid rgba(0, 74, 141, 0.06);
}

.bee-dash-stat-tile {
  border-color: rgba(0, 74, 141, 0.1) !important;
  box-shadow: 0 2px 8px rgba(0, 47, 94, 0.04);
}

/* --- Contabilidad (card superior + filtros) --- */
.bee-conta-hero-card {
  border: 1px solid rgba(0, 74, 141, 0.1);
  overflow: hidden;
  box-shadow: var(--bee-sombra-card) !important;
}

.bee-conta-hero-head {
  background: var(--bee-gradient-hero);
  position: relative;
}

.bee-conta-hero-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bee-halo-hero);
  pointer-events: none;
}

.bee-conta-hero-head > div {
  position: relative;
  z-index: 1;
}

.bee-conta-hero-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bee-conta-hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 42rem;
}

.bee-conta-hero-accent {
  display: inline-block;
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bee-amarillo-brillante), var(--bee-amarillo));
  margin-bottom: 0.75rem;
}

.bee-conta-hero-body {
  background: linear-gradient(180deg, #ffffff 0%, var(--bee-fondo-suave) 100%);
  border-top: 1px solid rgba(0, 74, 141, 0.06);
}

.bee-conta-btn-aplicar {
  background: var(--bee-gradient-boton);
  border: none;
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(232, 185, 35, 0.35);
}

.bee-conta-btn-aplicar:hover {
  color: #111;
  filter: brightness(1.05);
}

.bee-conta-hero-card .conta-rango-rapido {
  border-color: rgba(0, 74, 141, 0.35);
  color: var(--bee-azul-primario);
  font-size: 0.75rem;
}

.bee-conta-hero-card .conta-rango-rapido:hover {
  background: var(--bee-azul-claro);
  border-color: var(--bee-azul-primario);
  color: var(--bee-azul-oscuro);
}

/* --- Documentos (card superior) --- */
.bee-doc-hero-card {
  border: 1px solid rgba(0, 74, 141, 0.1);
  overflow: hidden;
  box-shadow: var(--bee-sombra-card) !important;
}

.bee-doc-hero-head {
  background: var(--bee-gradient-hero);
  position: relative;
}

.bee-doc-hero-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bee-halo-hero);
  pointer-events: none;
}

.bee-doc-hero-head > div {
  position: relative;
  z-index: 1;
}

.bee-doc-hero-accent {
  display: inline-block;
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bee-amarillo-brillante), var(--bee-amarillo));
  margin-bottom: 0.75rem;
}

.bee-doc-hero-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bee-doc-hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 42rem;
}

/* --- Docente (dashboard, perfil, calendario) — misma paleta BeeAPP --- */
.bee-docente-perfil-cover {
  background: var(--bee-gradient-hero);
  position: relative;
  min-height: 120px;
}

.bee-docente-perfil-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bee-halo-hero);
  pointer-events: none;
}

.bee-docente-perfil-cover .row {
  position: relative;
  z-index: 1;
}

#docente-calendario {
  min-height: 520px;
}

#docente-calendario .fc {
  --fc-border-color: #e9ecef;
  --fc-today-bg-color: rgba(0, 74, 141, 0.08);
  font-size: 0.875rem;
}

#docente-calendario .fc .fc-toolbar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #344767;
}

#docente-calendario .fc .fc-button-primary {
  background: var(--bee-gradient-hero);
  border: none;
}

#docente-calendario .fc .fc-button-primary:hover {
  filter: brightness(1.05);
}

.fc .fc-button-doc-nuevo {
  background: #fff !important;
  color: var(--bee-azul-primario) !important;
  border: 1px solid rgba(0, 74, 141, 0.35) !important;
  font-weight: 600;
}

.fc .fc-button-doc-nuevo:hover {
  background: var(--bee-fondo-suave) !important;
}

.bee-docente-list-item {
  border-left: 3px solid var(--bee-azul-primario);
  padding-left: 0.75rem;
  margin-bottom: 0.75rem;
}

.bee-docente-list-item.bee-docente-list-item--urgent {
  border-left-color: #fb6340;
}

.bee-docente-cal-badge-asig {
  background: var(--bee-azul-primario) !important;
}

.bee-docente-cal-badge-entrega {
  background: #fb6340 !important;
}

.bee-docente-dash-kicker {
  letter-spacing: 0.06em;
}

.bee-docente-dash-blurb {
  max-width: 36rem;
}

/* Representante — tarjetas de alumno en portal (dashboard / representados) */
.bee-rep-alumno-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 74, 141, 0.12);
  transition: box-shadow 0.2s ease;
}

.bee-rep-alumno-card:hover {
  box-shadow: 0 4px 18px rgba(0, 47, 94, 0.1);
}

.bee-rep-icon-sm {
  width: 42px;
  height: 42px;
  min-width: 42px;
}

.bee-rep-icon-md {
  width: 56px;
  height: 56px;
  min-width: 56px;
}

.bee-rep-hero-blurb {
  max-width: 40rem;
}