/* SPDX-License-Identifier: Apache-2.0 */
#container {
    width: calc(100% - 50px);
    margin: 25px;
}

#title {
    color: #3f68a7;
    text-transform: uppercase;
    text-align: center;
    margin: 0.5em 0;
    font-size: 1.8em;
    font-weight: 600;
}

.qrcode-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.qrcode {
    display: block;
    width: calc(100% - 50px - 2rem);
}
.qrcode-placeholder {
    display: block;
    width: calc(100% - 50px - 2rem);
    height: calc(100% - 50px - 2rem);
    opacity: 0.7;
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=);
}

.actions-container {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: center;
    width: stretch;
    column-gap: 0.5rem;
    margin-top: 1rem;
    height: 3.25rem;

    button {
        background-color: white;
        border-radius: 4px;
        filter: drop-shadow(0px 4px 7px #0004382c);
        display: flex;
        flex-direction: column;
        padding: 0.25rem;
        img {
            width: 2.5rem;
            height: 2.5rem;
        }
    }
}
