/* Import font */
body {
  font-family: 'Inter', sans-serif;
}

/* Modal backdrop */
.modal-backdrop {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

/* Modal content */
.modal-content-area {
  background-color: #fff;
  margin: 8vh auto;
  padding: 1.5rem;
  border-radius: 0.75rem;
  position: relative;
  width: 95%;
  max-width: 700px;
  animation: slideDown 0.3s;
}

/* Status colors */
.status-Paid {
  color: #10B981;
  font-weight: 600;
}
.status-Pending {
  color: #F59E0B;
  font-weight: 600;
}
.status-Cancelled {
  color: #EF4444;
  font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}
