/* custom css */
/* Card Component Styles */
.card {
  border-radius: 1rem; /* rounded-xl */
  border: 1px solid #e5e7eb; /* light border (you can customize this) */
  background-color: #fff; /* bg-card */
  color: #111827; /* text-card-foreground */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* shadow */
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* subtle lift on hover */
}

.card-header {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem; /* space-y-1.5 */
}

.card-title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.card-description {
  font-size: 0.875rem;
  color: #6b7280; /* text-muted-foreground */
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
}

.card-footer {
  padding: 1.5rem;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
