.alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1055;
}

.alert-box {
  background: white;
  color: var(--main-color);
  border-radius: 10px;
  padding: 22px;
  width: 100%;
  max-width: 520px;
  transform: translateY(-8%);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.alert-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.alert-message {
  margin-bottom: 18px;
  line-height: 1.4;
}

.alert-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.alert-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--green-color);
  color: white;
}

.alert-btn.secondary {
  background: transparent;
  color: var(--main-color);
  border: 1px solid rgba(47,64,80,.25);
}
