.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

button {
    padding: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.36px;
    background: none;
    border: 1px solid var(--dark-blue);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

button:hover {
    background-color: var(--green);
    border: 1px solid var(--green);
}

.qr-container {
    padding: 160px;
    max-width: 360px;
    max-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--dark-blue);
}

#btn-end:hover {
    background: var(--red);
}

.actions {
    display: flex;
    gap: 40px;
}

.qr-wrapper {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    gap: 40px;
    position: absolute;
    inset: 0;
    z-index: 10;
}


.panel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;

    p {
        padding: 5px;
        background: var(--gray);
        flex-grow: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
}