[v-cloak] {
    display: none;
}



.nutrients-table {
    display:flex;
    flex-direction: column;
    color: #444;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.nutrients-table .nutrient-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.nutrients-table .nutrient-row:nth-child(2n) {
    background-color: var(--gray-200);
}


.nutrients-table .nutrient-name, .nutrients-table .nutrient-value {
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
}

.nutrients-table .nutrient-name {
    width: 70%;
    text-align: left;
    border-right: 1px solid #ccc;
    flex-grow: 1;
}

.nutrients-table .nutrient-value {
    width: 90px;
    text-align: right;
}

.nutrients-table .nutrient-row>div:not(.value-energy)>div:not(:first-child) {
    font-weight: normal;
}
.nutrients-table .nutrient-row>.nutrient-name:not(.value-energy)>div:not(:first-child) {
    padding-left: 0.5rem;
}

p.ingredients b {
    font-weight: bold;
}
/* .nutrients-table .nutrient-value.value-energy>div {
    font-weight: bold;
} */

p.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

.qrcode-container {
    /* display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; */
    text-align: center;
    /* margin-top: 1rem; */
}

.qrcode-container .buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qrcode-additional-info {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}


body.wine-detail {
    background-color: var(--gray-100);
    color: var(--gray-900);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}


/*create a card for the wine, in the center of the page, slightly rounded corners, with a shadow*/
.nutritient-solo-container,
.nutritient-solo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
    max-width: 600px;
    margin: 50px auto;
    height: auto;
    flex-direction: column;
    gap: 1rem;
}

.nutritient-solo-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}
.nutritient-solo-disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}