/* css/components/notify.css */

.notify-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.notify-box {
  background-color: var(--color-box, #2b1c52);
  color: var(--color-text, #ffffff);
  padding: 2rem;
  border-radius: var(--border-radius, 0.6rem);
  max-width: 90%;
  width: 380px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.notify-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.notify-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notify-buttons.double {
  flex-direction: row;
  justify-content: space-between;
}

.notify-button {
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius, 0.6rem);
  background-color: var(--color-primary, #a55eff);
  color: var(--color-text, #fff);
  border: none;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.notify-button:hover {
  background-color: var(--color-primary-hover, #933bff);
}

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