/* Fondo semitransparente */
    #popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Animaci¨Žn de entrada elegante */
    #popup-content {
      position: relative;
      background: white;
      padding: 0 0 20px;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
      max-width: 90%;
      width: 700px;
      opacity: 0;
      transform: scale(0.9);
      animation: fadeZoomIn 0.6s ease forwards;
    }

    @keyframes fadeZoomIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Imagen tipo banner */
    #popup-content img {
      width: 100%;
      height: auto;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      display: block;
    }

    /* Bot¨Žn cerrar */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 22px;
      color: #fff;
      background: #000000aa;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
      z-index: 1;
    }

    .close-btn:hover {
      background: #000;
    }

    /* Texto del comunicado */
    .popup-message {
      padding: 15px 20px 0;
      font-size: 15px;
      color: #444;
      text-align: center;
      line-height: 1.5;
    }