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

#happy-button,
#neutral-button,
#aqua-button,
#summer-button,
#ar-button,
#test-button,
#test2-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: #f9b518; /* Rojo */
    color: white;
}

#neutral-button {
    background-color: #2c4898; /* Amarillo */
    color: white;
}

#aqua-button {
    background-color: #0c84cb; /* Azul */
    color: white;
}

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

#test-button {
    background-color: #FF0000; /* Naranja */
    color: white;
}

#test2-button {
    background-color: #FF0000; /* Naranja */
    color: white;
}

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

#ar-button:active,
#happy-button:active,
#neutral-button:active,
#aqua-button:active,
#summer-button:active,
#test-button:active, {
    background-color: #006f80;
}
#ar-button,
.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;
}

#ar-button:hover,
.qr-code__close-button:hover {
    background-color: #00a7c9;
}

#ar-button:active,
.qr-code__close-button:active {
    background-color: #008c9f;
}

.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;
}

#ar-button {
    position: relative;
    z-index: 1;
}