/*Write your Own Css Here*/
/* Popup */
.popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Estilos del popup */
    .popup-content {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      max-width: 90%;
      width: 530px;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      animation: fadeIn 0.3s ease;
    }

    .popup-content p {
        font-size: 24px;
    }

    /* Botón de cerrar */
    .close-btn {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 20px;
      color: #555;
      background: none;
      border: none;
      cursor: pointer;
    }

    .close-btn:hover {
      color: #000;
    }

    /* Animación */
    @keyframes fadeIn {
      from {opacity: 0; transform: scale(0.95);}
      to {opacity: 1; transform: scale(1);}
    }
/* Popup */