/* static/popular-servers.css */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.popup-content {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.popup-content h3 {
  margin-top: 0;
}

.popup-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.popup-content button {
  margin-top: 15px;
  background-color: #0b64f1;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}
