.modal-container {
  position: relative;
  z-index: 9999;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(75, 85, 99, 0.75);
  transition: opacity 0.3s ease-out;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  height: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-header {
  display: flex;
  align-items: start;
  text-align: center;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fef2f2;
  border-radius: 50%;
  margin-right: 1rem;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #f87171;
}

.modal-title h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.modal-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

.deactivate-btn:hover {
  background-color: #dc2626;
}

.cancel-btn {
  width: 100%;
  background-color: #ef4444;
  color: white;
  border: 1px solid #d1d5db;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  cursor: pointer;
}

.cancel-btn:hover {
  background-color: #dc2626;
}

.btn-arr {
  color: #fff !important;
}
.link-s {
  color: #fff !important;
}
