/* Estilos para el contenedor del popup */
.popup-container {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Estilos para el contenido del popup */
.popup {
    background-color: #fff;
    padding: 20px;
    /*border-radius: 5px;*/
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.popup h2 {
    font-size: 24px;
}

.popup-content {
    position: relative;
    text-align: center;
}

/* Estilos para el botón de cerrar */
#close-popup {
    position: absolute;
    right:0;
    top: 0;
    border: 8px solid #a8ce44;
    border-radius: 50%;
    background-color: #2c2d28;
    color: #a8ce44;
    /* font-weight: 600; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}