.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modalContent {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.iconContainer {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 32px;
  height: 32px;
}

.danger {
  background-color: #fee2e2;
  color: #ef4444;
}

.warning {
  background-color: #fef3c7;
  color: #f59e0b;
}

.info {
  background-color: #dbeafe;
  color: #3b82f6;
}

.title {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.message {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cancelButton,
.confirmButton {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  min-width: 100px;
}

.cancelButton {
  background-color: #f3f4f6;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.cancelButton:hover {
  background-color: #e5e7eb;
}

.confirmButton {
  color: white;
  border: none;
}

.confirmButton.danger {
  background-color: #ef4444;
}

.confirmButton.danger:hover {
  background-color: #dc2626;
}

.confirmButton.warning {
  background-color: #f59e0b;
}

.confirmButton.warning:hover {
  background-color: #d97706;
}

.confirmButton.info {
  background-color: #3b82f6;
}

.confirmButton.info:hover {
  background-color: #2563eb;
}

@media (max-width: 640px) {
  .modalContent {
    padding: 1.5rem;
    margin: 1rem;
  }

  .iconContainer {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .icon {
    width: 28px;
    height: 28px;
  }

  .title {
    font-size: 1.125rem;
  }

  .message {
    font-size: 0.875rem;
  }

  .actions {
    flex-direction: column-reverse;
  }

  .cancelButton,
  .confirmButton {
    width: 100%;
    padding: 0.75rem;
  }
} 