body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8f8f8;
  }

  .modalx-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .modalx {
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10000;
  }

  .modalx h2 {
    margin-bottom: 15px;
  }

  .modalx p {
    margin-bottom: 20px;
    color: #444;
  }

  .modalx button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }

  .modalx button:hover {
    background-color: #0056b3;
  }

  .hidden {
    display: none;
  }

  .popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(25, 25, 25, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 5px solid #00ff99;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  font-size: 16px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.popup.show {
  opacity: 1;
  transform: translateY(0);
}

.highlight {
  color: #00ff99;
  font-weight: bold;
}
  