.modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: var(--white);
  color: var(--black);
  border-radius: 12px;
  min-width: 320px;
  max-width: 95vw;
  min-height: 80px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 24px 20px 16px 20px;
  position: relative;
  animation: modalIn 0.2s;
}
@keyframes modalIn {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--orange);
  text-align: center;
}
.modal-body {
  margin-bottom: 16px;
  text-align: center;
}
.modal-footer {
  text-align: center;
  color: var(--white);
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--orange);
  cursor: pointer;
}
body.modal-open {
    overflow: hidden;
}

#Modal button {
  background-color: var(--primary-gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin: 0;
  border: none;
}

#Modal button.modal-close {
  background: transparent;
  color: var(--primary-gold);
  font-size: 1.5rem;
  padding: 0;
}

.logout-btn {
  background-color: var(--secondary-gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}