
/* ══════════════════════════════════════════
   MEETINGS PANEL
══════════════════════════════════════════ */
.meetings-panel {
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 30px 40px;
  backdrop-filter: blur(10px); /* Efecto de filtro borroso para el fondo */
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.meetings-title {
  font-size: clamp(1rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.meetings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--pill-border) transparent;
}

.meeting-card {
  border-radius: var(--radius-sm);
  background: #00000025;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.meeting-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}

.meeting-topic {
  font-weight: 600;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.3;
  color: rgb(255, 255, 255);
}

.meeting-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}


@keyframes pulse-active {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Crece un 8% */
  }
  100% {
    transform: scale(1);
  }
}

.badge-active {
  background: rgba(80, 220, 160, 0.18);
  color: #00ff37;
  animation: pulse-active 1.5s infinite ease-in-out;
}

.badge-idle {
  background: rgba(255, 234, 4, 0.073);
  color: #f3eb00;
}

.meeting-person {
  font-size: 10px;
}

.contador {
  margin-top: 6px; 
  font-size: 12px; 
  color: #56587b;
  font-weight: 700;
}
