/* Layout com sidebar */
.layout-sidebar {
  display: flex;
  min-height: 100vh;
}
.layout-sidebar .content {
  flex: 1;
  padding: 24px;
  background: #f8f9fa;
  overflow-y: auto;
}

/* Cards de stats */
.stat-card {
  border: none;
  border-radius: 10px;
  transition: transform 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
}
.stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Badge de status */
.badge-active { background-color: #198754; }
.badge-pending { background-color: #ffc107; color: #000; }
.badge-paid { background-color: #0d6efd; }
.badge-churned { background-color: #dc3545; }
.badge-paused { background-color: #6c757d; }

/* Tabelas */
.table th {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #6c757d;
}

/* Copy button */
.copy-btn {
  cursor: pointer;
}
.copy-btn:hover {
  color: #0d6efd;
}
