.custom-reason-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-reason-modal-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-align: center;
  animation: popIn 0.25s ease-out;
}

.custom-reason-textarea {
  width: 100%;
  height: 90px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
  resize: none;
  margin-bottom: 18px;
  font-family: 'Rubik', 'Segoe UI', sans-serif;
}

.custom-reason-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.custom-reason-btn,
.cancel-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s;
}

.custom-reason-btn {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
}

.custom-reason-btn:hover {
  background: linear-gradient(135deg, #0056b3, #0094cc);
}

.cancel-btn {
  background: #e9ecef;
  color: #333;
}

.cancel-btn:hover {
  background: #dee2e6;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}