.pop2 {
    border: 2px solid black;
    display: none;
}

.pop2-visible {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 285pt;
    padding: 15pt;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    z-index: 1000;
    font-size: 12pt !important;
}

.pop2 .pop2-close-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 5px 10px; 
  background-color: #f8971c36;
  color: #F8971C;
  border: none;
  cursor: pointer;
}

.pop2 .pop2-info {
    display: flex;
    padding: 20pt;
}

.pop2 .pop2-buttons {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

a.pop2-button,
  button.pop2-button {
  display: inline-block;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 6px;
  background-color: #F8971C;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

a.pop2-button:hover,
button.pop2-button:hover {
  background-color: #f28a07;
  text-decoration: none;
}

a.pop2-button:active,
button.pop2-button:active {
  transform: scale(0.97);
}

a.pop2-button:disabled,
button.pop2-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
