/* MODAL OVERLAY */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* MODAL BOX */
.modal-content {
  background-color: #fff;
  border: 1px solid rgba(var(--color-primary-rgb), 1);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: fadeIn 0.2s ease;
}

.modal-content h3 {
  margin-top: 0;
}

.modal-content p {
  color: rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

#userName {
  color: rgba(var(--color-primary-rgb), 1);
}

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