/* LS Eventos - Dashboard custom styles */

/* Período selecionado */
.periodo-btn {
  color: #fff0f5;
  background: transparent;
}
.periodo-btn.active {
  background: #ff2a7a;
  color: #1a0410;
}

/* KPI cards hover */
.kpi-card {
  transition: transform 0.15s ease;
}
.kpi-card:hover {
  transform: translateY(-2px);
}

/* Tabela hover */
#tabela-body tr {
  transition: background 0.1s ease;
}
#tabela-body tr:hover {
  background: #fafafa;
}

/* Status badges na tabela */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: 2px solid #1a0410;
}
.status-agendou {
  background: #ff2a7a;
  color: #1a0410;
}
.status-aguardando {
  background: #5a0f3a;
  color: white;
}
.status-naoagendou {
  background: #2a0a1c;
  color: #fff0f5;
}

/* Scrollbar custom */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #fff0f5;
}
::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}

/* Print friendly */
@media print {
  header, #btn-refresh, #btn-logout {
    display: none !important;
  }
}
