.privacy-link {
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90vw;
  height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-out, slideDown 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.small-font {
  color: white;
  font-size: 10px;
}

.small-font a:hover {
  color: dodgerblue;
}

.med-font {
  color: gray;
  font-size: 12px;
}
.med-font a {
  color: gray;
}
.med-font a:hover {
  cursor: pointer;
  color: dodgerblue;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1200px) {
  .modal-content {
    padding: 10px;
  }

  .close-btn {
    top: 15px;
    right: 15px;
    font-size: 24px;
  }
}
