.button-container {
    text-align: center;
    margin-top: 10px;
}

#happy-button,
#neutral-button,
#aqua-button,
#summer-button,
#ar-button,
#switch-model-button {
    display: block;
    margin: 10px auto; /* Centrar horizontalmente */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 150px; /* Ajusta el tamaño según sea necesario */
}




#ar-button {
    background-color: #00d1ef;
    color: white;
}

#happy-button {
    background-color: #ff0000; /* Rojo */
    color: white;
}

#neutral-button {
    background-color: #ffff00; /* Amarillo */
    color: #333333;
}

#aqua-button {
    background-color: #0000ff; /* Azul */
    color: white;
}

#summer-button {
    background-color: #ffa500; /* Naranja */
    color: white;
}

#ar-button:hover,
#happy-button:hover,
#neutral-button:hover,
#aqua-button:hover,
#summer-button:hover {
    background-color: #008c9f;
}

#ar-button:active,
#happy-button:active,
#neutral-button:active,
#aqua-button:active,
#summer-button:active {
    background-color: #006f80;
}

/* Inicio Estilos para mostrar QR de AR */

.qr-code__close-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #00d1ef;
    color: white;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qr-code-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.qr-code {
    position: absolute;
    box-sizing: border-box;
    width: 248px;
    max-width: calc(100vw - 20px);
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 #00000040;
    padding: 32px;
    font-family: 'Inter', sans-serif;
}

.qr-code__title,
.qr-code__subtitle {
    text-align: center;
    color: #252525;
}

.qr-code__title {
    font-weight: bold;
    font-size: 18px;
}

.qr-code__subtitle {
    font-size: 11px;
}

.qr-code__image-aspect-box {
    position: relative;
    padding-top: 100%;
}

.qr-code__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar.active {
    position: relative;
    z-index: 0;
    float:right;
}

/* Ocultar el ícono en dispositivos móviles */
@media (max-width: 768px) {
    .ar.active {
        display: none; /* Oculta el ícono en pantallas pequeñas */
    }
}

/* Fin Estilos para mostrar QR de AR */