/* Basic popup styling */
html, body {
    height: 100%;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.popup-close {
    position: absolute;
    color: black;
    background: transparent;
    top: 5px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
#closePopup:hover{
  background-color: white !important;
  color:black !important;
}

#popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding:12px;
}

.popup-form input {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
}

.popup-form button {
  background-color: #1e1e1e;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.popup-form button:hover {
  background-color: #333;
}

.popup-footer{
  font-size: 11px;
  color: #999;
  line-height: 1.4;
}

.empty-page-content {
  display: none; /* Hidden initially */
  padding: 40px;
}
#popup {
  display: none; /* Hide by default */
}
