/* Nutrition Table Styles */
.nutrition-table {
    width: 100%;
    max-width: 400px;
    border: 2px solid #000;
    font-family: Arial, sans-serif;
    margin: 0 auto;
    background: #fff;
    border-radius: 0;
}

.nutrition-table-header {
    padding: 15px 15px 0;
    position: relative;
}

.nutrition-table-header h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    border: none;
    color: #000;
    text-transform: none;
    letter-spacing: normal;
}

.nutrition-header-line {
    height: 8px;
    background: #000;
    margin: 8px 0;
}

.nutrition-portions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 8px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
}

.portion-column {
    text-align: right;
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    min-width: 80px;
}

.nutrition-table-content {
    padding: 15px;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 0;
    border-bottom: 1px dotted #999;
    font-size: 15px;
    line-height: 1.4;
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrition-subrow {
    padding-left: 20px;
    font-size: 14px;
}

.nutrition-subrow .nutrition-label {
    font-weight: normal;
    font-style: normal;
}

.nutrition-label {
    font-weight: bold;
    color: #000;
}

.nutrition-values {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.nutrition-value {
    text-align: right;
    color: #000;
    font-weight: normal;
    min-width: 80px;
    font-size: 16px;
}

.portion-value {
    color: #000;
    font-weight: normal;
    font-size: 16px;
}

@media (max-width: 768px) {
    .nutrition-table {
        max-width: 100%;
    }
}