.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.custom-alert-overlay.active {
  display: flex;
}

.custom-alert-box {
  background: #0b0b0d;
  border: 1px solid rgba(242, 182, 50, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 450px;
  width: 90%;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.custom-alert-title {
  color: #f2b632;
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.custom-alert-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.custom-alert-close:hover {
  color: #f2b632;
}

.custom-alert-message {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.custom-alert-buttons {
  display: flex;
  justify-content: flex-end;
}

.custom-alert-ok {
  padding: 0.75rem 2rem;
  background: #f2b632;
  color: #0b0b0d;
  border: 1px solid #f2b632;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.custom-alert-ok:hover {
  background: #ffce52;
  border-color: #ffce52;
}

@media (max-width: 768px) {
  .custom-alert-box {
    width: 95%;
    padding: 1.5rem;
  }
}
