.confirm-container {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  align-items: center;
  justify-content: center;
}

.modal-active {
  display: flex;
}

.confirm-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.confirm-content {
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1em 2em;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
