/* Generic Modals */
.generic-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.generic-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.2s ease-out;
  font-family: 'Open Sauce One', sans-serif;
}

.generic-modal h3 {
  color: #899A9F;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.generic-modal p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.generic-modal-btn {
  display: inline-block;
  background: #899A9F;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.generic-modal-btn:hover {
  background: #6f8187;
  color: #ffffff !important;
}

.generic-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.generic-modal-close:hover {
  color: #333;
}

@media (max-width: 768px) {
  .generic-modal {
    padding: 30px 20px;
  }
}
