/* Minimal custom styles — most styling is via Tailwind utility classes */

body {
  font-family: system-ui, -apple-system, sans-serif;
}

.font-serif {
  font-family: Georgia, 'ui-serif', serif;
}

/* Hover lift effect for cards */
.card-hover {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card-hover:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(12, 30, 48, 0.08);
}

/* Drag-drop zone */
.dropzone {
  border: 2px dashed #d6d3d1;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.dropzone.dragover {
  border-color: #b8860b;
  background-color: #fff8e1;
}

/* Toast animations */
@keyframes toast-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.toast-enter {
  animation: toast-in 0.18s ease-out;
}

/* Calendar week cell */
.cal-cell {
  min-height: 56px;
}

/* Hide spinner on inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
