.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.custom-modal {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.close-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 0.5rem;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.upload-section {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.upload-label {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.button-row {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cancel-btn,
.submit-btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
}

.cancel-btn {
  background-color: #ccc;
  border: none;
  border-radius: 5px;
}

.submit-btn {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.spinner {
  width: 30px;
  height: 30px;
  /* border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #ffffff; */
  border: 3px solid rgb(36 107 221);
  border-top-color: #d2ddf1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.not-allowed {
  cursor: not-allowed !important;
}

.status.pending {
  color: blue;
  /* text-shadow: 0 0 5px rgba(0, 0, 255, 0.6); */
}

.status.confirmed {
  color: green;
  /* text-shadow: 0 0 5px rgba(0, 128, 0, 0.6); */
}

.status.rejected {
  color: red;
  /* text-shadow: 0 0 5px rgba(255, 0, 0, 0.6); */
}
