.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

.modal-content {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  padding: 0.5rem;
  margin: 1rem 0;

  background: linear-gradient(
    135deg,
    rgba(217, 217, 217, 0.0) 0%,
    rgba(128, 128, 128, 0.65) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);

  width: 90%;
  max-width: 500px;
  z-index: 1000;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3{
  font-size: 1.5rem;
}

.modal-body {
  padding: 20px;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-direction:row;
  justify-content: space-between;
}

.error-message {
  background: #fee;
  color: #c00;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.info-text {
  color: #666;
  font-size: 0.9em;
}
