/* Card style */
.card {
  border-radius: 1rem;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

/* Input focus */
.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
  border-color: #28a745;
}

/* Button hover effect */
.btn-success:hover {
  background-color: #218838;
  box-shadow: 0 0.5rem 1rem rgba(33, 136, 56, 0.3);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Flatpickr styling */
.flatpickr-calendar {
  border-radius: 0.5rem;
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.2);
}

/* Input group icon style */
.input-group-text {
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
}
