.popup-agenda {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: linear-gradient(135deg, #000, #8b0000);
  color: white;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.popup-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.popup-content ul {
  list-style: none;
  padding: 0;
}

.popup-content li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.popup-content li::before {
  content: '🗓️';
  margin-right: 10px;
}

.close-popup {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
}

.hidden {
  display: none;
}

@media (max-width: 480px) {
  .popup-content {
    padding: 20px;
    max-height: 90vh;
  }
}
