.pve-frontend-root {
    margin: 16px 0;
    padding: 0;
    border: none;
    background: transparent;
}

.pve-frontend-placeholder {
    font-size: 14px;
    color: #50575e;
}

.pve-frontend-error {
    font-size: 14px;
    color: #d63638;
    padding: 8px;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
    border-radius: 4px;
}

.pve-group {
    margin-bottom: 24px;
}

.pve-group-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1d2327;
}

.pve-required-asterisk {
    color: #dc3232;
    font-weight: bold;
    margin-right: 4px;
}

.pve-group-options {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    gap: 0;
}

.pve-group-options > div {
    padding: 0 8px 16px 8px;
    box-sizing: border-box;
}

.pve-ingredient-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-wrap: nowrap; /* Force single line */
}

.pve-ingredient-option:hover {
    background: transparent;
}

.pve-ingredient-option input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.pve-ingredient-label {
    /* Remove flex: 1 to prevent label from taking all space */
    font-size: 14px;
    color: #1d2327;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bold label when selected */
.pve-ingredient-option.pve-selected .pve-ingredient-label {
    font-weight: 700;
}

.pve-ingredient-price {
    font-size: 14px;
    font-weight: 600;
    color: #2271b1;
    white-space: nowrap; /* Prevent price wrapping */
    flex-shrink: 0; /* Price never shrinks */
    /* Price appears right after label with gap spacing */
}

.pve-group-error {
    font-size: 13px;
    color: #d63638;
    margin: 8px 0 0 0;
    padding: 8px;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
    border-radius: 4px;
}
